Difference between revisions of "Git checkout -b"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 1: Line 1:
 
{{lc}}
 
{{lc}}
 +
https://git-scm.com/docs/git-checkout
 +
 
Create a new branch and change to it:
 
Create a new branch and change to it:
 
  [[git checkout]] -b YOUR_NEW_BRANCH_NAME
 
  [[git checkout]] -b YOUR_NEW_BRANCH_NAME

Revision as of 08:28, 8 March 2023

https://git-scm.com/docs/git-checkout

Create a new branch and change to it:

git checkout -b YOUR_NEW_BRANCH_NAME
Switched to a new branch 'YOUR_NEW_BRANCH_NAME'
git checkout -b "Name with spaces"
fatal: 'Name with spaces' is not a valid branch name.

Create a new branch

git branch new_branch_name

git checkout new_branch_name

git push --set-upstream origin new_branch_name

Related


See also

Advertising: