欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

github:已经提交并push后再次追加提交

发布时间:2025/3/21 31 豆豆
生活随笔 收集整理的这篇文章主要介绍了 github:已经提交并push后再次追加提交 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

快速链接:
.
👉👉👉 个人博客笔记导读目录(全部) 👈👈👈

(1)修改倒数第1次的commit

指令:$ git rebase -i HEAD~1

(2)修改pick为edit

// 这里修改代码、以及git add

(3)$ git commit --amend

按i进入编辑模式,修改内容,退出编辑模式,输入:wq保存并退出

(4)$ git rebase --continue

(5)强制push
$ git push --force github

例如:

test@test-21:~/workspace/optee/my_opteeos/optee_os$ git rebase -i HEAD~1 Stopped at 615c14d4... scripts : check the input already signed before signing a TA You can amend the commit now, withgit commit --amend Once you are satisfied with your changes, rungit rebase --continuetest@test-21:~/workspace/optee/my_opteeos/optee_os$ git add scripts/sign_encrypt.py test@test-21:~/workspace/optee/my_opteeos/optee_os$ git commit --amend [detached HEAD cd49d655] scripts : Check the input already signed before signing a TADate: Mon Jan 25 23:06:04 2021 +08001 file changed, 11 insertions(+)test@test-21:~/workspace/optee/my_opteeos/optee_os$ git push --force https://github.com/baronZhou/optee_os.git Username for 'https://github.com': baronZhou Password for 'https://baronZhou@github.com': Enumerating objects: 7, done. Counting objects: 100% (7/7), done. Compressing objects: 100% (4/4), done. Writing objects: 100% (4/4), 897 bytes | 149.00 KiB/s, done. Total 4 (delta 3), reused 0 (delta 0), pack-reused 0 remote: Resolving deltas: 100% (3/3), completed with 3 local objects. To https://github.com/baronZhou/optee_os.git+ 615c14d4...cd49d655 master -> master (forced update)

总结

以上是生活随笔为你收集整理的github:已经提交并push后再次追加提交的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。