So erstellen Sie eine neue Filiale in Git
git checkout master
git branch {branch_name}
git checkout {branch_name}
Breakable Baboon
git checkout master
git branch {branch_name}
git checkout {branch_name}
git checkout -b new_branch
$ git checkout -b <branch-name>
$ git checkout <existing_branch>
$ git checkout -b <new_branch>
git checkout -b <new-branch>
creating new branch and pushing repo