diff options
author | nulltoken <emeric.fermas@gmail.com> | 2013-01-20 13:27:28 +0100 |
---|---|---|
committer | nulltoken <emeric.fermas@gmail.com> | 2013-02-05 20:33:03 +0100 |
commit | a0c34c9406d3a41047f29e71139405d6de9731b2 (patch) | |
tree | 3746b58a9a1d062cf218a4a4dac8adad606c44fe /include | |
parent | c67ffd4aa0b8e98fc1951d9aeb8f33fec17beede (diff) | |
download | libgit2-a0c34c9406d3a41047f29e71139405d6de9731b2.tar.gz |
reset: Introduce git_reset_default()
Diffstat (limited to 'include')
-rw-r--r-- | include/git2/reset.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/git2/reset.h b/include/git2/reset.h index 4c75ae72d..c7c951942 100644 --- a/include/git2/reset.h +++ b/include/git2/reset.h @@ -53,6 +53,29 @@ typedef enum { GIT_EXTERN(int) git_reset( git_repository *repo, git_object *target, git_reset_t reset_type); +/** + * Updates some entries in the index from the target commit tree. + * + * The scope of the updated entries is determined by the paths + * being passed in the `pathspec` parameters. + * + * Passing a NULL `target` will result in removing + * entries in the index matching the provided pathspecs. + * + * @param repo Repository where to perform the reset operation. + * + * @param target The committish which content will be used to reset the content + * of the index. + * + * @param pathspecs List of pathspecs to operate on. + * + * @return 0 on success or an error code < 0 + */ +GIT_EXTERN(int) git_reset_default( + git_repository *repo, + git_object *target, + git_strarray* pathspecs); + /** @} */ GIT_END_DECL #endif |