Are these the same thing? If so, why are there so many terms?!
Also, I know there is this thing called git stash, which is a place where you can temporarily store changes to your working copy without committing them to the repo. I find this tool really useful, but again, the name is very similar to a bunch of other concepts in git -> this is very confusing!!
The index/stage/cache are the same thing – as for why so many terms, I think that index was the ‘original’ term, but people found it confusing, so the other terms were introduced. And I agree that it makes things a bit confusing sometimes at first.
The
stashfacility of git is a way to store ‘in-progress’ work that you don’t want to commit right now in a commit object that gets stored in a particular stash directory/database). The basicstashcommand will store uncommitted changes made to the working directory (both cached/staged and uncached/unstaged changes) and will then revert the working directory to HEAD.It’s not really related to the index/stage/cache except that it’ll store away uncommitted changes that are in the cache.
This lets you quickly save the state of a dirty working directory and index so you can perform different work in a clean environment. Later you can get back the information in the stash object and apply it to your working directory (even if the working directory itself is in a different state).
The official
git stashmanpage has pretty good detail, while remaining understandable. It also has good examples of scenarios of howstashmight be used.