0

Is there a way to specify a name for the stash when using the command line tool?

TortoiseGitProc.exe /command:stashsave
SQB
  • 3,926
  • 2
  • 28
  • 49
sboulema
  • 837
  • 1
  • 10
  • 22

1 Answers1

1

Starting with TortoiseGit 1.8.10.0 you can use

TortoiseGitProc.exe /command:stashsave /msg:"MSG"

See Revision: 74352b9ed427.

For older version you have to use git.exeas a fallback:

git stash save "message"
MrTux
  • 32,350
  • 30
  • 109
  • 146
  • I know that is possible, but i want to show the TortoiseGit GUI and pre-fill a stash name. Trying to make git as user friendly as possible ;) – sboulema Aug 06 '14 at 14:54
  • *`git stash save "message"` – Biffen Aug 07 '14 at 20:23
  • 1
    @Biffen thanks; sboulema: please report feature requests to https://code.google.com/p/tortoisegit/issues/list, if the TortoiseGit developers don't know them, they can't implement them – MrTux Aug 07 '14 at 20:30