Git est juste d'essayer de deviner ce que vous essayez de faire. C'est faire de chaque tentative de préserver intacte l'histoire. Bien sûr, il n'est pas parfait. Donc, git mv
vous permet d'être explicite avec votre intention et à éviter certaines erreurs.
Considérons cet exemple. Départ avec un vide repo,
git init
echo "First" >a
echo "Second" >b
git add *
git commit -m "initial commit"
mv a c
mv b a
git status
Résultat:
# On branch master
# Changes not staged for commit:
# (use "git add/rm <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: a
# deleted: b
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# c
no changes added to commit (use "git add" and/or "git commit -a")
La détection automatique a échoué:(
Ou s'agit-il?
$ git add *
$ git commit -m "change"
$ git log c
commit 0c5425be1121c20cc45df04734398dfbac689c39
Author: Sergey Orshanskiy <orshansk@gmail.com>
Date: Sat Oct 12 00:24:56 2013 -0400
change
et puis
$ git log --follow c
Author: Sergey Orshanskiy <orshansk@gmail.com>
Date: Sat Oct 12 00:24:56 2013 -0400
change
commit 50c2a4604a27be2a1f4b95399d5e0f96c3dbf70a
Author: Sergey Orshanskiy <orshansk@gmail.com>
Date: Sat Oct 12 00:24:45 2013 -0400
initial commit
Maintenant, essayez à la place (n'oubliez pas de supprimer l' .git
le dossier lors de l'expérimentation):
git init
echo "First" >a
echo "Second" >b
git add *
git commit -m "initial commit"
git mv a c
git status
So far So good:
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# renamed: a -> c
git mv b a
git status
Maintenant, personne n'est parfait:
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: a
# deleted: b
# new file: c
#
Vraiment? Mais bien sûr...
git add *
git commit -m "change"
git log c
git log --follow c
...et le résultat est le même que ci-dessus: seulement --follow
montre la totalité de l'histoire.
Maintenant, être prudent avec les renommer, comme chaque option peut encore produire des effets étranges.
Exemple:
git init
echo "First" >a
git add a
git commit -m "initial a"
echo "Second" >b
git add b
git commit -m "initial b"
git mv a c
git commit -m "first move"
git mv b a
git commit -m "second move"
git log --follow a
commit 81b80f5690deec1864ebff294f875980216a059d
Author: Sergey Orshanskiy <orshansk@gmail.com>
Date: Sat Oct 12 00:35:58 2013 -0400
second move
commit f284fba9dc8455295b1abdaae9cc6ee941b66e7f
Author: Sergey Orshanskiy <orshansk@gmail.com>
Date: Sat Oct 12 00:34:54 2013 -0400
initial b
Par contraste avec:
git init
echo "First" >a
git add a
git commit -m "initial a"
echo "Second" >b
git add b
git commit -m "initial b"
git mv a c
git mv b a
git commit -m "both moves at the same time"
git log --follow a
Résultat:
commit 84bf29b01f32ea6b746857e0d8401654c4413ecd
Author: Sergey Orshanskiy <orshansk@gmail.com>
Date: Sat Oct 12 00:37:13 2013 -0400
both moves at the same time
commit ec0de3c5358758ffda462913f6e6294731400455
Author: Sergey Orshanskiy <orshansk@gmail.com>
Date: Sat Oct 12 00:36:52 2013 -0400
initial a
Ups... Maintenant l'histoire remonte à l' initiale d'un au lieu de l' initiale b, ce qui est faux. Alors, quand nous avons fait deux coups à la fois, Git est devenu confus et n'a pas suivi les changements correctement. Par ailleurs, dans mes expériences, la même chose s'est produite lorsque j'ai supprimé/les fichiers créés au lieu d'utiliser git mv
. Procéder avec soin; vous avez été prévenu...