I have a fatal error, when updating my current symfony 2 version (from 2.0.12 to 2.0.15).
Here the error:
> Installing/Updating doctrine-fixtures
HEAD is now at bed8908 Update README.md
> Installing/Updating DoctrineFixturesBundle
fatal: https://github.com/symfony/DoctrineFixturesBundle.git/info/refs not found: did you run git update-server-info on the server?
PS: I have done the git update-server-info command. But nothing…
Here my deps file
[doctrine-fixtures]
git=http://github.com/doctrine/data-fixtures.git
[DoctrineFixturesBundle]
git=http://github.com/doctrine/DoctrineFixturesBundle.git
target=bundles/Symfony/Bundle/DoctrineFixturesBundle
version=origin/2.0
and my deps.lock file
doctrine-fixtures bed8908ae929562317e5c59dc0bee24f3b63067e
I have found the solution:
php bin/vendors reinstallThe reinstall vendors will be the command which makes the difference into my case…