提交管理技巧
提交操作
修改最近的提交信息
git commit -v --amend
修改提交作者信息
git commit --amend --author='Git Fun <support@git.fun>'
重置作者信息
git commit --amend --reset-author --no-edit
撤销操作
创建新提交来撤销之前的提交
git revert <commit-ish>
重置到特定提交(私有分支)
git reset <commit-ish>
保留工作区更改的重置
git reset --keep <commit-ish>
提交历史
查看当前分支的提交历史
git cherry -v master
查看特定文件的提交历史
git log -p <file_name>
搜索提交内容
git log -S'<search_term>'
查看提交中修改的文件列表
git diff-tree --no-commit-id --name-only -r <commit-ish>
提交清理
删除敏感数据
git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch <path-to-file>' --prune-empty --tag-name-filter cat -- --all
重置首次提交
git update-ref -d HEAD
高级技巧
Git 钩子使用
ls .git/hooks/
cp .git/hooks/pre-commit.sample .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
二分查找调试
git bisect start
git bisect bad
git bisect good <commit-ish>
git bisect reset
交互式变基
git rebase -i HEAD~<n>
git rebase -i <commit-ish>
储藏管理
git stash push -m "描述信息"
git stash list
git stash pop
git stash apply stash@{n}
git stash drop stash@{n}
子树合并
git remote add -f <name> <repository>
git merge -s subtree --squash <name>/master
提交签名
git commit -S -m "提交信息"
git verify-commit <commit-ish>
注意事项
- 在共享分支上使用 revert 而不是 reset
- 修改已推送的提交要谨慎
- 清理敏感数据后需要强制推送
- 建议在重要操作前创建备份分支
- 使用钩子时注意权限设置
- 交互式变基时注意保持提交历史清晰
- 定期清理不需要的储藏记录