Create Anew Branch And Push To Git Code Example
Example 1: create local and remote branch
git checkout -b yourBranchName
git push -u origin yourBanchName
Example 2: how to create branch in github using git bash
$ git checkout -b [name_of_your_new_branch]
Comments
Post a Comment