Posterior a investigar con especialistas en esta materia, programadores de varias ramas y profesores hemos dado con la respuesta al dilema y la dejamos plasmada en esta publicación.
Ejemplo 1: sucursal de git checkout de remoto a local
git checkout -b test origin/test
// making a local copy of the branch called "test" from origin.
Ejemplo 2: crear una sucursal local y remota
git checkout -b yourBranchName
git push -u origin yourBanchName
Ejemplo 3: sucursal remota de git checkout
# In modern versions of Git, you can checkout the remote branch like a local branch.
git checkout <remotebranch># Older versions of Git require the creation of a new branch based on the remote.
git checkout <remotebranch> origin/<remotebranch>
Ejemplo 4: crear una nueva sucursal remota
git checkout -b <new-branch-name> #Create new branch locally
git push <remote-name><new-branch-name> #Create new branch remotely
Ejemplo 5: git link rama local a rama remota
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
Ejemplo 6: git obtener rama remota
git fetch
git checkout test
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)