“git crea rama local” Código de respuesta

Haz un nuevo rama Git

git checkout -b branch-name
Jittery Jellyfish

git crea rama local

# To create a new local branch...
# ...based on the current revision:
$ git checkout -b <branch-name>

# ...based on a specific revision hash:
$ git checkout -b <branch-name> <commit-hash>
Tame Tortoise

crear una nueva rama Git

# create and switch to the new branch 
git checkout -b <Name_of_your_branch>
# example 
git checkout -b testBranch1
# if you check your current branch it will show you testBranch1
polyglot orca

Respuestas similares a “git crea rama local”

Preguntas similares a “git crea rama local”

Más respuestas relacionadas con “git crea rama local” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código