Is there a way to specify a name for the stash when using the command line tool?
TortoiseGitProc.exe /command:stashsave
Is there a way to specify a name for the stash when using the command line tool?
TortoiseGitProc.exe /command:stashsave
Starting with TortoiseGit 1.8.10.0 you can use
TortoiseGitProc.exe /command:stashsave /msg:"MSG"
For older version you have to use git.exe
as a fallback:
git stash save "message"