位置:首頁 > 其他技術 > Git教學 > Git 提交更改

Git 提交更改

Jerry 已經提交的更改,他想糾正他的最後一次提交,在這種情況下,git 的修改將幫助操作。最後提交修改操作的變化,包括提交信息,它創建新的提交ID。

修改操作之前,他會檢查提交日誌。

[jerry@CentOS project]$ git log

上麵的命令會產生以下結果。

commit cbe1249b140dad24b2c35b15cc7e26a6f02d2277
Author: Jerry Mouse <jerry@gitbook.net>
Date: Wed Sep 11 08:05:26 2013 +0530

Implemented my_strlen function


commit 19ae20683fc460db7d127cf201a1429523b0e319
Author: Tom Cat <tom@gitbook.net>
Date: Wed Sep 11 07:32:56 2013 +0530

Initial commit

Jerry 提交了新的變化 - 修改操作,並查看提交日誌。

[jerry@CentOS project]$ git status -s
M string.c
?? string

[jerry@CentOS project]$ git add string.c

[jerry@CentOS project]$ git status -s
M string.c
?? string

[jerry@CentOS project]$ git commit --amend -m 'Changed return type of my_strlen to size_t'
[master d1e19d3] Changed return type of my_strlen to size_t
1 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 string.c

現在 git 的日誌,將顯示新的提交信息與新的提交ID

[jerry@CentOS project]$ git log

上麵的命令會產生以下結果。

commit d1e19d316224cddc437e3ed34ec3c931ad803958
Author: Jerry Mouse <jerry@gitbook.net>
Date: Wed Sep 11 08:05:26 2013 +0530

Changed return type of my_strlen to size_t


commit 19ae20683fc460db7d127cf201a1429523b0e319
Author: Tom Cat <tom@gitbook.net>
Date: Wed Sep 11 07:32:56 2013 +0530

Initial commit