Portrait of the author

Transfer git stash between computers

On computer 1:

git stash -u
git stash show "stash@{0}" -p > changes.patch

On computer 2:

git apply changes.patch