Answers for "how to create new branch in git through command"

131

git create new branch

// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch

// First Push
git push --set-upstream origin myNewBranch
Posted by: Guest on September-02-2020
0

git new branch from current

branchShell/Bash By Scriper on Sep 2 2020 Comment
// Example for creating a new branch named myNewBranch
git checkout -b myNewBranch

// First Push
git push --set-upstream origin myNewBranch
Posted by: Guest on September-04-2021

Code answers related to "how to create new branch in git through command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language