Skip to content

Instantly share code, notes, and snippets.

@4sskick
Created January 8, 2025 07:33
Show Gist options
  • Save 4sskick/3238f9624d5ea87e2566c5e7ce7b2752 to your computer and use it in GitHub Desktop.
Save 4sskick/3238f9624d5ea87e2566c5e7ce7b2752 to your computer and use it in GitHub Desktop.
Export stash as a file, and apply it to another computer

on your active directory workspace which project you're working on, see the correct stash you wanna export to applied on another computer

Stash current changes

  • git > Stash > Stash (Include Untracked)
git stash show "stash@{index_number like: 0, 1 or 2}"

the index number would be different on your compouter, in normal situation the changes which freshly stashed will be on index 0 (zero) after sure that the file changes is correct then you're ready to write those changes on files.

Create stash as patch

git stash show "stash@{0}" -p > changes.or.name.you.want.patch

see for the created filewith suffix .patch. Now you ready to deliver the stash on your computer to another by command below

Apply patch

git apply changes.patch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment