Difference between revisions of "Git checkout"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
{{lowercase}}
 
{{lowercase}}
<code>git-checkout</code> Switch [[branches]] or restore working tree files
+
<code>git-checkout</code> switch [[branches]] or restore working tree files
 
* Doc: https://git-scm.com/docs/git-checkout
 
* Doc: https://git-scm.com/docs/git-checkout
  

Revision as of 13:45, 19 October 2021

git-checkout switch branches or restore working tree files

git checkout
Your branch is up to date with 'origin/main'.
git checkout master
Branch 'master' set up to track remote branch 'master' from 'origin'.
Switched to a new branch 'master'
git merge origin/main
fatal: refusing to merge unrelated histories
git checkout main
error: pathspec 'main' did not match any file(s) known to git
git checkout main
Switched to branch 'main'
Your branch is up to date with 'origin/main'.

Rename Branch

git checkout -f yourbranch 
git branch -M yourNewBranch

Related terms

See also

Advertising: