git create remote branch 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: create local and remote branch

git checkout -b yourBranchName
git push -u origin yourBanchName

Example 3: add remote branch git

git remote add github git://github.com/jdoe/coolapp.git
git fetch github

Example 4: create new remote branch

git checkout -b <new-branch-name>	#Create new branch locally
git push <remote-name> <new-branch-name> #Create new branch remotely