Buat cabang baru dari master
git checkout -b new-branch-name
Difficult Dove
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 -b mybranch
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
$ git branch <new-branch>
# 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