I have changes to a file, plus a new file, and would like to use git stash to put them away while I switch to another task. But git stash by itself stashes only the changes to the existing file; the new file remains in my working tree, cluttering up my future work. How do I stash this untracked file?
|
Add ( As of version 1.7.7 you can use |
|||||||||||||||
|
|
As of git 1.7.7,
|
|||||
|
|
Add the file to the index:
The entire contents of the index, plus any unstaged changes to existing files, will all make it into the stash. |
|||||
|
|
As has been said elsewhere, the answer is to
However, the question is also raised in another answer: What if you don't really want to add the file? Well, as far as I can tell, you have to. And the following will NOT work:
this will fail, as follows:
So, what can you do? Well, you have to truly add the file, however, you can effectively un-add it later, with
And then you can continue working, in the same state as you were in before the Another possibility for a workflow on this would be something like:
... which could also be easily scripted -- even aliases would do (presented in zsh syntax; adjust as needed) [also, I shortened the filename so it all fits on the screen without scrolling in this answer; feel free to substitute an alternate filename of your choosing]:
Note that the latter might be better as a shell script or function, to allow parameters to be supplied to
Note: In this form, you need to supply an action argument as well as the identifier if you're going to supply a stash identifier, e.g. Which of course you'd put in your Hopefully this answer is helpful to someone, putting everything together all in one answer. |
||||
|
|
|
I thought this could be solved by telling git that the file exists, rather than committing all of the contents of it to the staging area, and then call
or
However, the latter doesn't work:
|
||||
|
I used to ponder and desire the same feature. But over time, I noticed it really isn't needed. When you stash, it's OK to leave the new files. Nothing "bad" can happen to them (when you check out something else, git will error and not overwrite the existing untracked file) And since usually the time frame between the |
|||||||||
|