Desarrollo web Git Repositorios

Error de git al momento de actualizar un repositorio remoto con pull

Cuando aparezca un error de git, luego de ejecutar el comando git pull

There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.

git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

git branch –set-upstream-to=origin/<branch> fix/bug-confirm-review

La solucion es sencilla para este caso y con este nombre de rama se debe ejecutar estos comandos:
git branch --set-upstream-to=origin/fix/bug-confirm-review
git pull origin fix/bug-confirm-review

Luego ya se trabaja con normalidad

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *