Last active
October 30, 2025 05:18
-
-
Save jioo/eebe4c39d800baf99c0db703ded4842c to your computer and use it in GitHub Desktop.
Revisions
-
jioo revised this gist
Feb 5, 2021 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ Stash current changes - git > Stash > Stash (Include Untracked) Create stash as patch ```bash git stash show "stash@{0}" -p > changes.patch -
jioo revised this gist
Feb 13, 2020 . No changes.There are no files selected for viewing
-
jioo revised this gist
Feb 13, 2020 . 1 changed file with 8 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,9 @@ Create stash as patch ```bash git stash show "stash@{0}" -p > changes.patch ``` Apply patch ```bash git apply changes.patch ``` -
jioo created this gist
Feb 13, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ git stash show "stash@{0}" -p > changes.patch git apply changes.patch