Created
July 25, 2016 19:56
-
-
Save GuiSevero/0ea992fa1d07c2e8477b7f2a2c1456fd to your computer and use it in GitHub Desktop.
SVN "git stash" alternative
This file contains 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 characters
set PATH=%PATH%;C:\Program Files\TortoiseSVN\bin | |
git stash: svn diff > patch_name.patch; svn revert -R . | |
git stash apply: patch patch_name.patch | |
based on stackoverflow answer: http://stackoverflow.com/questions/1554278/temporarily-put-away-uncommited-changes-in-subversion-a-la-git-stash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment