Git - Commit ایجاد تغییر در



Jerry یک Commit را اجرا کرده بود و حالا او میخواهد آن را اصلاح کند GIT برای این کار راهی در نظر گرفته است. Amend یا اصلاح کردن، راه حل git amend میتوان آخرین Commit را تغییر داد، از جمله پیغامی که در آن درج کرده بودیم Amend یک Commit ID جدید ایجاد خواهد کرد.

Jerry قبل از اصلاح کردن میخواهد گزارش وضعیت Commit ها را ببی

[jerry@CentOS project]$ git log

دستورات بالا نتایج زیر را نمایش:

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

Implemented my_strlen function


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

Initial commit

Jerry تغییرات جدید را با اضافه کردن -- amend در دستور Commit اعمال میکند و در نهایت یک گزارش وضعیت هم میگیرد

[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 log میتوانیم commit ID یا hash ID جدید را نیز ببینیم:

[jerry@CentOS project]$ git log

دستورات بالا نتایج زیر را در برخواهند داشت:

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

Changed return type of my_strlen to size_t


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

Initial commit
Advertisements