Git 提交更改
Posted kluan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 提交更改相关的知识,希望对你有一定的参考价值。
Jerry 已经提交的更改,他想纠正他的最后一次提交,在这种情况下,git 的修改将帮助操作。最后提交修改操作的变化,包括提交信息,它创建新的提交ID。
修改操作之前,他会检查提交日志。
[[email protected] project]$ git log
上面的命令会产生以下结果。
commit cbe1249b140dad24b2c35b15cc7e26a6f02d2277 Author: Jerry Mouse <[email protected]> Date: Wed Sep 11 08:05:26 2013 +0530 Implemented my_strlen function commit 19ae20683fc460db7d127cf201a1429523b0e319 Author: Tom Cat <[email protected]> Date: Wed Sep 11 07:32:56 2013 +0530 Initial commit
Jerry 提交了新的变化 – 修改操作,并查看提交日志。
[[email protected] project]$ git status -s M string.c ?? string [[email protected] project]$ git add string.c [[email protected] project]$ git status -s M string.c ?? string [[email protected] 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
[[email protected] project]$ git log
上面的命令会产生以下结果。
commit d1e19d316224cddc437e3ed34ec3c931ad803958 Author: Jerry Mouse <[email protected]> Date: Wed Sep 11 08:05:26 2013 +0530 Changed return type of my_strlen to size_t commit 19ae20683fc460db7d127cf201a1429523b0e319 Author: Tom Cat <[email protected]> Date: Wed Sep 11 07:32:56 2013 +0530 Initial commit
PS:如果您想和业内技术大牛交流的话,请加qq群(521249302)或者关注微信公众 号(AskHarries),谢谢!
以上是关于Git 提交更改的主要内容,如果未能解决你的问题,请参考以下文章