what is the branch in git code example
Example 1: git branch
git checkout -b <new-branch-name> # create a new branch
git switch <branch-name> # Switch branch
Example 2: create a branch command
$ git push origin :[name_of_your_new_branch]
Example 3: git branch
git checkout -b <new-branch-name>
Example 4: create a branch command
$ git fetch [name_of_your_remote]