1、很不幸,已经push 了。
git commit --amend
#编辑message , 然后save
git push -f
好啦,尽量别这么干,要确保push的时候没人提交代码。。。
更尽量的是,commit message 别写错。
2、另外如果push 上去后,想撤销回滚,可以用
git revert commitIDxxxxxxx
git push
3、当然上面的方法就是把提交代码,以修改回原代码的方式提交上去,代码修改回原来的状态,但是会多一条“revert”的commit记录,还有一种极端的做法(多人管理慎用!!!)
git reset --hard commitIDxxxxxxx
git push origin develop(分支名) --force
网友评论