how to make a new branch git 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 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

//Create a New Branch
git checkout -b [name_of_your_new_branch]
//First Push
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

# Create New Branch And Switch To It
$ git checkout -b myBranchName

Example 6: git create new branch from current

git checkout -b topic/newbranch

Tags:

Php Example