“git criar ramo local” Respostas de código

Faça um novo ramo Git

git checkout -b branch-name
Jittery Jellyfish

git criar ramo 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

Crie um novo ramo 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

Respostas semelhantes a “git criar ramo local”

Perguntas semelhantes a “git criar ramo local”

Mais respostas relacionadas para “git criar ramo local” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código