Answers for "create branch from the current branch"

3

git branch from current branch

git checkout -b <branch-name>
Posted by: Guest on March-09-2021
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 "create branch from the current branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language