créer un. Branche de développement Git
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev
Vivacious Vicuña
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev
$ git checkout -b myFeature dev
git checkout -b new-branch-name
branchShell/Bash By Scriper on Sep 2 2020 Comment
// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch
// First Push
git push --set-upstream origin myNewBranch
git checkout master
git branch {branch_name}
git checkout {branch_name}
git checkout -b newBranch