summaryrefslogtreecommitdiff
path: root/src/reset.c
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2013-01-20 13:27:28 +0100
committernulltoken <emeric.fermas@gmail.com>2013-02-05 20:33:03 +0100
commita0c34c9406d3a41047f29e71139405d6de9731b2 (patch)
tree3746b58a9a1d062cf218a4a4dac8adad606c44fe /src/reset.c
parentc67ffd4aa0b8e98fc1951d9aeb8f33fec17beede (diff)
downloadlibgit2-a0c34c9406d3a41047f29e71139405d6de9731b2.tar.gz
reset: Introduce git_reset_default()
Diffstat (limited to 'src/reset.c')
-rw-r--r--src/reset.c74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/reset.c b/src/reset.c
index b637e3730..700aac808 100644
--- a/src/reset.c
+++ b/src/reset.c
@@ -9,6 +9,7 @@
#include "commit.h"
#include "tag.h"
#include "merge.h"
+#include "diff.h"
#include "git2/reset.h"
#include "git2/checkout.h"
#include "git2/merge.h"
@@ -54,6 +55,79 @@ cleanup:
return error;
}
+int git_reset_default(
+ git_repository *repo,
+ git_object *target,
+ git_strarray* pathspecs)
+{
+ git_object *commit = NULL;
+ git_tree *tree = NULL;
+ git_diff_list *diff = NULL;
+ git_diff_options opts = GIT_DIFF_OPTIONS_INIT;
+ size_t i;
+ git_diff_delta *delta;
+ git_index_entry entry;
+ int error;
+ git_index *index = NULL;
+
+ assert(pathspecs != NULL && pathspecs->count > 0);
+
+ memset(&entry, 0, sizeof(git_index_entry));
+
+ if ((error = git_repository_index(&index, repo)) < 0)
+ goto cleanup;
+
+ if (target) {
+ if (git_object_owner(target) != repo) {
+ giterr_set(GITERR_OBJECT,
+ "%s_default - The given target does not belong to this repository.", ERROR_MSG);
+ return -1;
+ }
+
+ if ((error = git_object_peel(&commit, target, GIT_OBJ_COMMIT)) < 0 ||
+ (error = git_commit_tree(&tree, (git_commit *)commit)) < 0)
+ goto cleanup;
+ }
+
+ opts.pathspec = *pathspecs;
+ opts.flags = GIT_DIFF_REVERSE;
+
+ if ((error = git_diff_tree_to_index(
+ &diff, repo, tree, index, &opts)) < 0)
+ goto cleanup;
+
+ git_vector_foreach(&diff->deltas, i, delta) {
+ if ((error = git_index_conflict_remove(index, delta->old_file.path)) < 0)
+ goto cleanup;
+
+ assert(delta->status == GIT_DELTA_ADDED ||
+ delta->status == GIT_DELTA_MODIFIED ||
+ delta->status == GIT_DELTA_DELETED);
+
+ if (delta->status == GIT_DELTA_DELETED) {
+ if ((error = git_index_remove(index, delta->old_file.path, 0)) < 0)
+ goto cleanup;
+ } else {
+ entry.mode = delta->new_file.mode;
+ git_oid_cpy(&entry.oid, &delta->new_file.oid);
+ entry.path = (char *)delta->new_file.path;
+
+ if ((error = git_index_add(index, &entry)) < 0)
+ goto cleanup;
+ }
+ }
+
+ error = git_index_write(index);
+
+cleanup:
+ git_object_free(commit);
+ git_tree_free(tree);
+ git_index_free(index);
+ git_diff_list_free(diff);
+
+ return error;
+}
+
int git_reset(
git_repository *repo,
git_object *target,