Answers for "git branch create on remote"

110

create remore git 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
5

create local and remote branch

git checkout -b yourBranchName
git push -u origin yourBanchName
Posted by: Guest on April-27-2020

Code answers related to "git branch create on remote"

Browse Popular Code Answers by Language