A veces uso la checkout -b
opción para crear una nueva sucursal, verificarla al mismo tiempo y configurar el seguimiento en un comando.
En un nuevo entorno, me sale este error:
$ git checkout -b test --track origin/master
fatal: Cannot update paths and switch to branch 'test' at the same time.
Did you intend to checkout 'origin/master' which can not be resolved as commit?
¿Por qué a Git no le gusta? Esto solía funcionar con el mismo repositorio.
origin/master
no es una ID de confirmación, es decir, que no es una rama remota válida. ¿Aparece en lagit branch -r
salida?