Skip to content

Instantly share code, notes, and snippets.

View hamirmahal's full-sized avatar
🖥️
Software engineering

Hamir Mahal hamirmahal

🖥️
Software engineering
View GitHub Profile
@jioo
jioo / share-git-stash.md
Last active March 13, 2024 14:59
How to export stash as a file, and apply it to another computer

Stash current changes

  • git > Stash > Stash (Include Untracked)

Create stash as patch

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

Apply patch