Saya baru saja menemukan bahwa jika perubahan yang tidak dikomit ditambahkan ke indeks (yaitu "dipentaskan", menggunakan git add ...
), maka git stash apply
(dan, mungkin, git stash pop
) benar-benar akan melakukan penggabungan yang tepat. Jika tidak ada konflik, Anda adalah emas. Jika tidak, selesaikan seperti biasagit mergetool
, atau secara manual dengan editor.
Untuk lebih jelasnya, ini adalah proses yang saya bicarakan:
mkdir test-repo && cd test-repo && git init
echo test > test.txt
git add test.txt && git commit -m "Initial version"
# here's the interesting part:
# make a local change and stash it:
echo test2 > test.txt
git stash
# make a different local change:
echo test3 > test.txt
# try to apply the previous changes:
git stash apply
# git complains "Cannot apply to a dirty working tree, please stage your changes"
# add "test3" changes to the index, then re-try the stash:
git add test.txt
git stash apply
# git says: "Auto-merging test.txt"
# git says: "CONFLICT (content): Merge conflict in test.txt"
... yang mungkin Anda cari.
tl; dr
Jalankan git add
dulu.