“git créer une branche locale” Réponses codées

faire une nouvelle branche git

git checkout -b branch-name
Jittery Jellyfish

git créer une branche locale

# 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

créer une nouvelle branche 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

Réponses similaires à “git créer une branche locale”

Questions similaires à “git créer une branche locale”

Plus de réponses similaires à “git créer une branche locale” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code