用户工具

站点工具


git

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录前一修订版
后一修订版
前一修订版
git [2020/09/27 14:38] ploughgit [2022/04/20 17:29] (当前版本) plough
行 30: 行 30:
 <code> <code>
 git rebase -i HEAD~4 git rebase -i HEAD~4
 +</code>
 +
 +===== 修改用户名和邮箱 =====
 +[[https://git-scm.com/book/zh/v2/Git-%E5%B7%A5%E5%85%B7-%E9%87%8D%E5%86%99%E5%8E%86%E5%8F%B2|Git 工具 - 重写历史]]
 +<code>
 +// 设置全局
 +git config --global user.name "Author Name"
 +git config --global user.email "Author Email"
 +
 +// 或者设置本地项目库配置
 +git config user.name "Author Name"
 +git config user.email "Author Email"
 +
 +// 修改最近一次提交的用户信息
 +git commit --amend --author="NewAuthor <NewEmail@address.com>"
 +</code>
 +
 +===== 回退到某个版本 =====
 +<code>
 +git reset --hard fae6966548e3ae76cfa7f38a461c438cf75ba965
 +</code>
 +
 +===== 本次提交跳过 precommit 检查 =====
 +<code>
 +git commit --no-verify -m "xxx"
 </code> </code>
git.1601188735.txt.gz · 最后更改: 2020/09/27 14:38 由 plough

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki