Acabei de descobrir que, se suas alterações não confirmadas forem adicionadas ao índice (ou seja, "preparado", usando git add ...
), então git stash apply
(e, presumivelmente, git stash pop
) fará realmente uma mesclagem adequada. Se não houver conflitos, você é de ouro. Caso contrário, resolva-os como de costume com git mergetool
, ou manualmente, com um editor.
Para deixar claro, é desse processo que estou falando:
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"
... o que provavelmente é o que você está procurando.
tl; dr
Corra git add
primeiro.