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.
reset --hardbrings everything from history to index and work tree, andcheckout <commitish> -- <files>does that for individual files. – Jefromi Sep 4 '10 at 0:34