NoiiApple

欢迎来到我的blog,我的名字叫秦雷柱,当前坐标北京!

0%

Commit 未设置 Author 和 Email

由于电脑更新,期间重新装过 Git 所以造成了全局下的用户名及其邮箱丢失,在 commit 时才知道,这时我们可通过下述命令对上次的 commit 附注进行设置,在命令的后方加 –no-edit 参数不会打开编辑器。

1
git commit --amend --author="Author Name <email@address.com>" --no-edit

全局设置

1
2
git config --global user.name ["Author Name"]
git config --global user.email ["email@address.com"]