How to checkout and create a branch in git

Code examples

44
0

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]
10
0

git checkout new branch

// create and checkout new branch in one line
git checkout -b new_branch
6
0

git create new branch from current

git checkout -b topic/newbranch
1
0

create branch from existing branch

$ git checkout -b myFeature dev
1
0

git create and checkout branch

$ git checkout -b <branch_name>
1
0

create new branch git

$ git checkout -b newBranchName

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................