Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History

README.md

Outline

Patch 管理

git log --pretty=raw
git show HEAD^
git show HEAD~3
git log --oneline
git reset HEAD^
git reset --hard HEAD^
git reset --hard <commit id>
git reflog
git log -g
git commit --amend
git commit --amend -m <message>
git reset --soft HEAD^
git reset --soft HEAD@{1}           # 保命技
git cherry-pick <commit id>
git rebase -i <after this commit>
git cherry-pick --continue
git cherry-pick --abort
git rebase --continue
git rebase --skip
git rebase --abort
git revert <commit id>
git revert --continue
git revert --abort




Morty Proxy This is a proxified and sanitized view of the page, visit original site.