悲凉自行车

文章
3
资源
0
加入时间
3年0月20天

Git 修改本地和远程的commit的作者信息

如果是第一条记录,执行:   1、修改本地记录:git commit --amend --author=""   2、获取远程信息 git fetch   3、推送修改 git push --force-with-lease如果是非第一条(第N条),则   1、git rebase -i commit_id(第N+1条记录的commitId)   2、git commit --amend --au...