Git - Salva modifiche
Jerry ha già eseguito il commit delle modifiche e desidera correggere il suo ultimo commit. In questo caso,git amendl'operazione aiuterà. L'operazione di modifica cambia l'ultimo commit incluso il messaggio di commit; crea un nuovo ID commit.
Prima di modificare l'operazione, controlla il registro di commit.
[[email protected] project]$ git log
Il comando precedente produrrà il seguente risultato.
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 conferma le nuove modifiche con - modifica operazione e visualizza il registro di commit.
[[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
Ora, git log mostrerà il nuovo messaggio di commit con un nuovo ID di commit -
[[email protected] project]$ git log
Il comando precedente produrrà il seguente risultato.
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