1. 程式人生 > >git commit --amend兩種用法

git commit --amend兩種用法

一、如果已經push到遠端伺服器,想修改已經提交過的commit資訊

1.儲存:Ctrl + o; 回車 ;退出:Ctrl + x

# git commit --amend

2.重新提交gerrit審批

# git push --no-thin origin HEAD:refs/for/master

二、如果已經push到遠端伺服器,有漏掉的test.txt檔案想提交到上一次的commit資訊

1.新增test.txt # git add test.txt

2.修改commit資訊;儲存:Ctrl + o; 回車 ;退出:Ctrl + x # git commit --amend

3.重新push到遠端伺服器 # git push --no-thin origin HEAD:refs/for/master  
---------------------  
作者:慢慢的燃燒  
來源:CSDN  
原文:https://blog.csdn.net/u010164190/article/details/78121718  
版權宣告:本文為博主原創文章,轉載請附上博文連結!