$ git stash -u
Use git stash to tuck away all staged changes, adding -u flag to include unstaged changes. If you want them later, you can get them back. If not, just do a:
$ git stash drop
That’ll get rid of them forever.
$ git stash -u
Use git stash to tuck away all staged changes, adding -u flag to include unstaged changes. If you want them later, you can get them back. If not, just do a:
$ git stash drop
That’ll get rid of them forever.