Unfortunately git stash doesn't support doing this. You basically have to apply the stash, then only stage the parts that you want to commit. You can then re-stash the remainder (or discard it).
ok so the following commandline feature isn't in the SourceTree roadmap yet?
$ git checkout stash@{0} -- <filename>
Git itself does support this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As stated above, git naturally supports this via
$ git checkout stash@{0} -- <filename>
You can even show the stashed version and save it under a different name:
$ git show stash@{0}:<full/filename> > <newfile>
Git is just powerfil like that. :-)
I would love to see the stash feature extended to include these usages in SourceTree.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
any updates on this? Cannot find how to apply only certain files/chunks from git stash. I used that on other project with TortoiseHg and like it. Can't find how to do same with sourcetree.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 for the feature. It's really annoying that at the end of 2019 we still don't have it. Please, add it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there a JIRA issue we can vote on for this?
BTW: You can see here (http://stackoverflow.com/a/22555169/40064) how to do it manually.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recently I looked up `custom actions` but they aren't an option that is available when right-clicking on anything related to a stash.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
FYI I tried the "Keep staged changes" check box when making the stash, but unfortunately this still stashes the staged changes along with the unstaged ones.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Perhaps no way to do it while applying the stash (that would be nice).
But you can achieve the affect by applying the stash, and then stashing just the hunks that you don't want (leaving the bits/files you do).
Command line equivalent is:
git stash pop stash@{x} git stash -p
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.