“Rama Git de Commit” Código de respuesta

git crea rama con confirmación específica

 
# Create a new branch from previous commit's hash
git branch develop 04c900c
 
# Push the new branch to remote repository
git push --set-upstream origin develop
 
# Checkout the new branch
git checkout develop
 
Lucky Ladybird

Rama Git de Commit

You can create the branch via a hash:

git branch branchname <sha1-of-commit>
Or by using a symbolic reference:

git branch branchname HEAD~3
To checkout the branch when creating it, use

git checkout -b branchname <sha1-of-commit or HEAD~3>
Frightened Fox

Respuestas similares a “Rama Git de Commit”

Preguntas similares a “Rama Git de Commit”

Más respuestas relacionadas con “Rama Git de Commit” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código