diff options
author | Russell Belfer <rb@github.com> | 2012-09-17 11:38:33 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2012-09-17 11:38:33 -0700 |
commit | 411cb017c21e0490ed1c6438c7d5fa1b4ee9f63f (patch) | |
tree | b7186ea6d0cf23326d18f26c090e07d084f3f911 /include/git2/reset.h | |
parent | e8776d30f7edb570f435cf746d712c696b862bdd (diff) | |
parent | 397837197d1ce04b8bd4aaa57a7f5f67648dc57f (diff) | |
download | libgit2-411cb017c21e0490ed1c6438c7d5fa1b4ee9f63f.tar.gz |
Merge pull request #887 from nulltoken/topic/reset-hard
Checkout, reset and others enhancements
Diffstat (limited to 'include/git2/reset.h')
-rw-r--r-- | include/git2/reset.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/git2/reset.h b/include/git2/reset.h index cd263fa99..cdcfb7671 100644 --- a/include/git2/reset.h +++ b/include/git2/reset.h @@ -24,6 +24,9 @@ GIT_BEGIN_DECL * Specifying a Mixed kind of reset will trigger a Soft reset and the index will * be replaced with the content of the commit tree. * + * Specifying a Hard kind of reset will trigger a Mixed reset and the working + * directory will be replaced with the content of the index. + * * TODO: Implement remaining kinds of resets. * * @param repo Repository where to perform the reset operation. |