Git versucht nur, für Sie zu erraten, was Sie zu tun versuchen. Es versucht alles, um eine ununterbrochene Geschichte zu bewahren. Natürlich ist es nicht perfekt. Deshalb git mv
ermöglicht es Ihnen, Ihre Absicht klar zu formulieren und einige Fehler zu vermeiden.
Betrachten Sie dieses Beispiel. Wir beginnen mit einem leeren Projektarchiv,
git init
echo "First" >a
echo "Second" >b
git add *
git commit -m "initial commit"
mv a c
mv b a
git status
Ergebnis:
# 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")
Automatische Erkennung fehlgeschlagen :( Oder doch?
$ git add *
$ git commit -m "change"
$ git log c
commit 0c5425be1121c20cc45df04734398dfbac689c39
Author: Sergey Orshanskiy <*****@gmail.com>
Date: Sat Oct 12 00:24:56 2013 -0400
change
und dann
$ git log --follow c
Author: Sergey Orshanskiy <*****@gmail.com>
Date: Sat Oct 12 00:24:56 2013 -0400
change
commit 50c2a4604a27be2a1f4b95399d5e0f96c3dbf70a
Author: Sergey Orshanskiy <*****@gmail.com>
Date: Sat Oct 12 00:24:45 2013 -0400
initial commit
Versuchen Sie nun stattdessen (vergessen Sie nicht, die .git
Ordner beim Experimentieren):
git init
echo "First" >a
echo "Second" >b
git add *
git commit -m "initial commit"
git mv a c
git status
So weit, so gut:
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# renamed: a -> c
git mv b a
git status
Nun, niemand ist perfekt:
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: a
# deleted: b
# new file: c
#
Wirklich? Aber natürlich...
git add *
git commit -m "change"
git log c
git log --follow c
...und das Ergebnis ist dasselbe wie oben: nur --follow
zeigt den gesamten Verlauf.
Seien Sie vorsichtig mit der Umbenennung, denn beide Optionen können immer noch seltsame Auswirkungen haben . Beispiel:
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 <*****@gmail.com>
Date: Sat Oct 12 00:35:58 2013 -0400
second move
commit f284fba9dc8455295b1abdaae9cc6ee941b66e7f
Author: Sergey Orshanskiy <*****@gmail.com>
Date: Sat Oct 12 00:34:54 2013 -0400
initial b
Kontrastieren Sie das mit:
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
Ergebnis:
commit 84bf29b01f32ea6b746857e0d8401654c4413ecd
Author: Sergey Orshanskiy <*****@gmail.com>
Date: Sat Oct 12 00:37:13 2013 -0400
both moves at the same time
commit ec0de3c5358758ffda462913f6e6294731400455
Author: Sergey Orshanskiy <*****@gmail.com>
Date: Sat Oct 12 00:36:52 2013 -0400
initial a
Ups... Jetzt geht die Geschichte zurück zu ursprünglich ein anstelle von ursprünglich b was falsch ist. Als wir also zwei Züge auf einmal machten, wurde Git verwirrt und verfolgte die Änderungen nicht richtig. In meinen Experimenten passierte übrigens dasselbe, wenn ich Dateien löschte/erstellte, anstatt git mv
. Seien Sie vorsichtig; Sie wurden gewarnt...