how to create branch in github code example

Example 1: github delete branch

// delete branch locally
git branch -D localBranchName

// delete branch remotely
git push origin --delete remoteBranchName

Example 2: git command to create a branch

//Create a New Branch
git checkout -b [name_of_your_new_branch]
//First Push
git push --set-upstream origin [name_of_your_new_branch]

Example 3: how to make a new branch git

$ git checkout -b [name_of_your_new_branch]

Example 4: create a new branch based on another branch

//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myfeature dev

Example 5: git new branch

$ git checkout -b [your_branch_name]
# Switched to a new branch [your_branch_name]

# This is shorthand for:
$ git branch [your_branch_name]
$ git checkout [your_branch_name]

Example 6: createa. branch off of development git

//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev

Tags:

Misc Example