EKsumic's Blog

let today = new Beginning();

Click the left button to use the catalog.

OR

GitBash如何修改已提交的 commit 訊息並推送到遠端

如何修改 Git 中的提交訊息(本地和遠端)

在 Git 中,如果你想修改已經提交的 commit 記錄上的 message(包括遠端),可以通過下面的方法完成:

修改最後一次的 commit message 並強制推送到遠端:

# 修改最後一次的 commit message
git commit --amend -m "新的 commit message"

# 強制推送更新到遠端
git push --force

注意事項:

  • git commit --amend 用來修改最後一次的 commit message。

  • git push --force 會強制更新遠端記錄,覆蓋之前的 commit。


結論

通過以上命令,你可以快速修改本地和遠端的 commit message。請確保在強制推送前,充分考慮協作影響,並與團隊進行溝通。

 

→返回目錄:GitBash使用手冊

This article was last edited at 2024-12-17 09:34:20

Today's comments have reached the limit. If you want to comment, please wait until tomorrow (UTC-Time).

There is 17h14m17s left until you can comment.