faire une nouvelle branche git
git checkout -b branch-name
Jittery Jellyfish
git checkout -b branch-name
# 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>
# 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