3
A
回答
3
只要做到:
git checkout -
注意儀表。 這將檢查出當前之前的最新分支。
正如你所看到的,語法類似於cd -
1
我永遠都不會發現這個不從@KlasMellbourn的答案,但是這是(在部分描述<branch>
)在git-checkout(1)手冊頁居然提到:
As a special case, the "@{-N}" syntax for the N-th last branch checks out the
branch (instead of detaching). You may also specify - which is synonymous with
"@{-1}".
+0
注意事項(4,5年以後)文檔的該部分略有更改:請參閱https://stackoverflow.com/a/47839400/6309 – VonC
+0
如果您有編輯權限,請隨時更新該帖子。 –
相關問題
- 1. git checkout vs git checkout HEAD vs git checkout <CURRENT BRANCH> vs git checkout - <WORKING DIR>
- 2. 「git checkout」和「git checkout - 」有什麼區別?
- 3. git revert和git checkout
- 4. git checkout for xcode
- 5. Git Checkout澄清
- 6. git checkout。(dot)interactive
- 7. Android Studio git checkout
- 8. git checkout | TUTORIAL_JAVA_VERSION |
- 9. 「git branch -track」vs「git checkout -track」
- 10. 與上游同步叉:git fetch + git checkout + git merge與git checkout + git pull
- 11. Git的 - 新的Checkout
- 12. git checkout HEAD〜2 ISSUE
- 13. git checkout的用途
- 14. Teamcity執行GIT Checkout
- 15. git checkout commit-name和git checkout branchname有何區別
- 16. Git checkout in post-receive hook:「Not git repository'。」
- 17. 什麼做「git checkout \ *」和「git commit - 」完成?
- 18. 「git checkout tag-name」vs「git reset --hard tag-name」
- 19. 如何將'git checkout'別名爲'git co'?
- 20. git-stash和git-checkout有什麼區別?
- 21. git checkout git gui中的文件修訂
- 22. `git pull`後需要`git checkout`嗎?
- 23. 「git pull」和「git checkout -b」安全操作?
- 24. 如何縮短`git checkout`到`git co`?
- 25. Git post-checkout hook from repo
- 26. 併發git checkout/add/commit
- 27. 「git checkout」不更新文件
- 28. git update submodule checkout to tag
- 29. git checkout刪除目錄
- 30. git post-receive checkout to remote machine?
哇,我沒有給git dev團隊足夠的功勞。謝謝! –
謝謝,這是一個不錯的訣竅。在你提到它之後,我發現它隱藏在[git-checkout(1)](https://www.kernel.org/pub/software/scm/git/docs/git-checkout.html)手冊頁中。我已經將man頁面中的引用作爲另一個答案發布,因此它可以正確格式化。 –