mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 15:18:01 +00:00
16 lines
591 B
Markdown
16 lines
591 B
Markdown
# Stash Everything
|
|
|
|
Running the `git stash` command will take all the changes to tracked files
|
|
in the working directory and stash them away. You can tack on the
|
|
`--include-untracked` flag to make sure that untracked files are also
|
|
included in the stash.
|
|
|
|
You can take this a step further with the `--all` flag. This will stash
|
|
everything included files that you've told git to ignore.
|
|
|
|
You probably don't want to do this. I ran this command and realized after
|
|
the command hung for about 10 seconds that I had just stashed the
|
|
`node_modules` directory.
|
|
|
|
See `man git-stash` for more details.
|