up vote 21 down vote favorite
10
share [g+] share [fb]

I think both the 'git reset' and 'git checkout' are the same in the sense that I go back to a specific commit. What's the difference between the two? I'm a little bit confused, as the svn only has 'svn co' to revert the commit.

ADDED

The following diagram from http://marklodato.github.com/visual-git-guide/ gives pretty simple idea what's the difference, but it seems that this diagram may not be exactly correct, or it's overly simplified. What do you think?

ADDED 2

VonC and Charles explained about them really well, and I found those two diagrams useful. In user's point of view, I think reset is reverting all the changes to a specific commit, whereas check out is more like preparing for a branch.

link|improve this question

The diagram is correct, though naturally simplified. There are certainly plenty of other ways to move information between history, stage, and work tree. For example, reset --hard brings everything from history to index and work tree, and checkout <commitish> -- <files> does that for individual files. – Jefromi Sep 4 '10 at 0:34
feedback

3 Answers

up vote 12 down vote accepted
  • git reset is specifically about updating the index, moving the HEAD.
  • git checkout is about updating the working tree (to the index or the specified tree). It will update the HEAD only if you checkout a branch (if not, you end up with a DETACHED HEAD).

By comparison, since svn has no index, only a working tree, svn checkout will copy a given revision on a separate directory.
The closer equivalent for git checkout would:

  • svn update (if you are in the same branch, meaning the same SVN URL)
  • svn switch (if you checkout for instance the same branch, but from another SVN repo URL)

All those three working tree modifications (svn checkout, update, switch) have only one command in git: git checkout.
But since git has also the notion of index (that "staging area" between the repo and the working tree), you also have git reset.

link|improve this answer
feedback

In their simplest form, reset resets the index without touching the working tree, while checkout changes the working tree without touching the index.

Resets the index to match HEAD, working tree left alone:

git reset

Conceptually, this checks out the index into the working tree. To get it to actually do anything you would have to use -f to force it to overwrite any local changes. This is a safety feature to make sure that the "no argument" form isn't destructive:

git checkout

Once you start adding parameters it is true that there is some overlap.

checkout is usually used with a branch, tag or commit. In this case it will reset HEAD and the index to the given commit as well as performing the checkout of the index into the working tree.

Also, if you supply --hard to reset you can ask reset to overwrite the working tree as well as resetting the index.

If you current have a branch checked out out there is a crucial different between reset and checkout when you supply an alternative branch or commit. reset will change the current branch to point at the selected commit whereas checkout will leave the current branch alone but will checkout the supplied branch or commit instead.

Other forms of reset and commit involve supplying paths.

If you supply paths to reset you cannot supply --hard and reset will only change the index version of the supplied paths to the version in the supplied commit (or HEAD if you don't specify a commit).

If you supply paths to checkout, like reset it will update the index version of the supplied paths to match the supplied commit (or HEAD) but it will always checkout the index version of the supplied paths into the working tree.

link|improve this answer
feedback

git reset work from stage to working directory, git checkout work from history to working directory. First diagram is wrong.

link|improve this answer
This isn't true. There is nothing wrong with the first diagram. In most instances reset never touches the working tree and in the case in the diagram checkout checks out from the index. If your referring to a specific use case you need to put some explanation into your answer. – Charles Bailey Apr 22 '11 at 9:38
Hm, "git reset copy entries from <commit> to the index". – jBee Apr 22 '11 at 10:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.