how to make a new branch git code example
Example 1: git create new branch
git checkout -b myNewBranch
git push --set-upstream origin myNewBranch
Example 2: git who created branch
git for-each-ref --format='%(color:cyan)%(authordate:format:%m/%d/%Y %I:%M %p) %(align:25,left)%(color:yellow)%(authorname)%(end) %(color:reset)%(refname:strip=3)' --sort=authordate refs/remotes
Example 3: git command to create a branch
git checkout -b [name_of_your_new_branch]
git push --set-upstream origin [name_of_your_new_branch]
Example 4: how to make a new branch git
$ git checkout -b [name_of_your_new_branch]
Example 5: create branch in git
$ git checkout -b myBranchName
Example 6: git create new branch from current
git checkout -b topic/newbranch