我正在使用Idea IntelliJ Community Edition 2016並對GIT進行了更改。但我沒有推動它。現在,當我看到我的推送隊列時,我可以在隊列中看到它。我試過RESET HEAD option
但它沒有奏效。我想刪除該提交。我怎麼能在Intellij中做到這一點?如何恢復unpushed git commit
0
A
回答
1
在最新版本中,您只需轉至version control
,右鍵單擊提交併選擇Undo Commit
。這會將更改放回到更改列表中(以便您可以根據需要進行編輯)並刪除提交。如果您希望它們完全消失,您可以刪除更改列表/恢復更改。
使用Reset HEAD
選項應太,只要確保選擇正確的目標和(如果你想保留更改,Hard
如果你想也沒了變化Mixed
)設置適當的復位型。爲了更容易找到目標,在右鍵單擊version control
中的提交時可以找到Reset Current Branch to Here
選項。
0
- $ git的承諾-m 「可怕的東西誤導」
- $ git的復位HEAD〜
- < <編輯您的檔案文件,必要>>
- $ git的加...
- $ git commit -c ORIG_HEAD
相關問題
- 1. 如何解決unpushed merge commit(git)?
- 2. 恢復以前的git commit?
- 3. Git撤消合併回覆後的unpushed commit
- 4. 我該如何修復恢復的git commit?
- 5. git-svn dmitmiting git commit
- 6. git show unpushed work
- 7. 恢復Git錯誤
- 8. 如何列出unpushed Git標記
- 9. 如何做hg恢復 - 所有與git?
- 10. 如何恢復從git提交更改?
- 11. 如何恢復Git倉庫
- 12. 如何恢復在git中?
- 13. 如何恢復「git rm -r。」?
- 14. 如何在GIT中恢復?
- 15. git恢復,然後如何更新github?
- 16. git commit -m vs git commit -am
- 17. git rebase drop commit不會恢復我的文件
- 18. 如何恢復'git filter-branch -f --env-filter'
- 19. 如何恢復Git軟復位?
- 20. Git revert lastet commit
- 21. 我該如何在git中恢復-aC?
- 22. Git恢復不工作
- 23. Git rebase - 跳過恢復
- 24. git rebase恢復後--abort
- 25. Git恢復錯誤信息?
- 26. 使用reflog git恢復rebase
- 27. Git rebase to older commit
- 28. 如何搜索git commit comments?
- 29. 如何中止'git commit --amend'?
- 30. git rebase after git恢復
謝謝,但這些是終端命令不intellij步驟。 – aaj