Utilisez-le git rebase --interactive
pour modifier ce commit, exécuter git reset HEAD~
, puis git add -p
en ajouter, puis faire un commit, puis en ajouter et faire un autre commit, autant de fois que vous le souhaitez. Lorsque vous avez terminé, exécutez git rebase --continue
et vous aurez toutes les validations fractionnées plus tôt dans votre pile.
Important : Notez que vous pouvez jouer et apporter toutes les modifications que vous souhaitez, sans avoir à vous soucier de perdre les anciennes modifications, car vous pouvez toujours exécuter git reflog
pour trouver le point dans votre projet qui contient les modifications que vous souhaitez, (appelons-le a8c4ab
) , puis git reset a8c4ab
.
Voici une série de commandes pour montrer comment cela fonctionne:
mkdir git-test; cd git-test; git init
ajoutez maintenant un fichier A
vi A
ajoutez cette ligne:
one
git commit -am one
puis ajoutez cette ligne à A:
two
git commit -am two
puis ajoutez cette ligne à A:
three
git commit -am three
maintenant le fichier A ressemble à ceci:
one
two
three
et notre git log
apparence est la suivante (enfin, j'utilisegit log --pretty=oneline --pretty="%h %cn %cr ---- %s"
bfb8e46 Rose Perrone 4 seconds ago ---- three
2b613bc Rose Perrone 14 seconds ago ---- two
9aac58f Rose Perrone 24 seconds ago ---- one
Disons que nous voulons diviser le deuxième commit, two
.
git rebase --interactive HEAD~2
Cela fait apparaître un message qui ressemble à ceci:
pick 2b613bc two
pick bfb8e46 three
Remplacez le premier pick
par un e
pour modifier ce commit.
git reset HEAD~
git diff
nous montre que nous venons de décompresser le commit que nous avons fait pour le deuxième commit:
diff --git a/A b/A
index 5626abf..814f4a4 100644
--- a/A
+++ b/A
@@ -1 +1,2 @@
one
+two
Étalons ce changement et ajoutons "et un troisième" à cette ligne dans le fichier A
.
git add .
C'est généralement le point au cours d'une rebase interactive où nous exécuterions git rebase --continue
, car nous voulons généralement simplement revenir dans notre pile de validations pour modifier une validation antérieure. Mais cette fois, nous voulons créer un nouveau commit. Nous allons donc courir git commit -am 'two and a third'
. Maintenant, nous éditons le fichier A
et ajoutons la ligne two and two thirds
.
git add .
git commit -am 'two and two thirds'
git rebase --continue
Nous avons un conflit avec notre commit three
, alors résolvons-le:
Nous allons changer
one
<<<<<<< HEAD
two and a third
two and two thirds
=======
two
three
>>>>>>> bfb8e46... three
à
one
two and a third
two and two thirds
three
git add .; git rebase --continue
Maintenant, notre git log -p
look ressemble à ceci:
commit e59ca35bae8360439823d66d459238779e5b4892
Author: Rose Perrone <roseperrone@fake.com>
Date: Sun Jul 7 13:57:00 2013 -0700
three
diff --git a/A b/A
index 5aef867..dd8fb63 100644
--- a/A
+++ b/A
@@ -1,3 +1,4 @@
one
two and a third
two and two thirds
+three
commit 4a283ba9bf83ef664541b467acdd0bb4d770ab8e
Author: Rose Perrone <roseperrone@fake.com>
Date: Sun Jul 7 14:07:07 2013 -0700
two and two thirds
diff --git a/A b/A
index 575010a..5aef867 100644
--- a/A
+++ b/A
@@ -1,2 +1,3 @@
one
two and a third
+two and two thirds
commit 704d323ca1bc7c45ed8b1714d924adcdc83dfa44
Author: Rose Perrone <roseperrone@fake.com>
Date: Sun Jul 7 14:06:40 2013 -0700
two and a third
diff --git a/A b/A
index 5626abf..575010a 100644
--- a/A
+++ b/A
@@ -1 +1,2 @@
one
+two and a third
commit 9aac58f3893488ec643fecab3c85f5a2f481586f
Author: Rose Perrone <roseperrone@fake.com>
Date: Sun Jul 7 13:56:40 2013 -0700
one
diff --git a/A b/A
new file mode 100644
index 0000000..5626abf
--- /dev/null
+++ b/A
@@ -0,0 +1 @@
+one