what is master branch in git code example
Example 1: creating a branch in git
git checkout -b <branch_name>
Example 2: git branch command
git branch <branchname>
(or)
git checkout -b <branchname>
git checkout -b <branch_name>
git branch <branchname>
(or)
git checkout -b <branchname>