mirror of
https://github.com/jbranchaud/til
synced 2026-01-04 23:58:01 +00:00
Add Stash Everything as a git til
This commit is contained in:
15
git/stash-everything.md
Normal file
15
git/stash-everything.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# 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.
|
||||
Reference in New Issue
Block a user