git brancg code example
Example 1: git create new branch
// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch
// First Push
git push --set-upstream origin myNewBranch
Example 2: git branch
git checkout -b <new-branch-name> # create a new branch
git switch <branch-name> # Switch branch
Example 3: git branch command
git branch <branchname>
(or)
git checkout -b <branchname>
Example 4: git branch
$ git branch iss53
$ git checkout iss53