git branch -l code example
Example 1: create a branch command
$ git checkout -b [name_of_your_new_branch]
Example 2: git branch
git checkout -b <new-branch-name>
git switch <branch-name>
Example 3: merge git branch
1.
git pull (current development branch)
2.
git checkout master
3.
git pull
4.
git merge development
5.
git push origin master
Example 4: git branch command
git branch <branchname>
(or)
git checkout -b <branchname>
Example 5: git branch
$ git checkout -b iss53
Switched to a new branch "iss53"
Example 6: create a branch command
$ git push origin :[name_of_your_new_branch]