Difference between revisions of "Git checkout"

From wikieduonline
Jump to navigation Jump to search
Line 44: Line 44:
 
* [[GitHub Actions: uses: actions/checkout@v3]]
 
* [[GitHub Actions: uses: actions/checkout@v3]]
 
* [[git switch]]
 
* [[git switch]]
 +
* [[git branch --list]]
  
 
== See also ==
 
== See also ==

Revision as of 13:46, 26 October 2022

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 -b YOUR_NEW_BRANCH_NAME
Switched to a new branch


git checkout main
Switched to branch 'main'
Your branch is up to date with 'origin/main'.
git checkout --progress --force
git checkout your_branch_name
git checkout --track
git checkout main
error: pathspec 'main' did not match any file(s) known to git

Rename Branch

git checkout -f yourbranch 
git branch -M yourNewBranch

Related

See also

  • https://github.com/actions/checkout
  • Advertising: