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 the file and start tracking it. Then stash. Since the entire contents of the file are new, they will be stashed, and you can manipulate it as necessary. |
||
|
|
|
|
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. |
||
|
|
|
|
You may only want to tell git that the file exists, rather than committing all of the contents of it to the staging area. If so, you may wish to read araqnid's answers on how to do that.
or
|
||
|
|
