From: Christian Couder <chriscool@tuxfamily.org>
To: git@vger.kernel.org
Cc: Junio C Hamano <gitster@pobox.com>,
Johannes Schindelin <Johannes.Schindelin@gmx.de>,
Stephan Beyer <s-beyer@gmx.net>,
Daniel Barkalow <barkalow@iabervon.org>,
Jonathan Nieder <jrnieder@gmail.com>, Jeff King <peff@peff.net>,
Linus Torvalds <torvalds@linux-foundation.org>
Subject: [RFC/PATCH 12/18] revert: write TODO and DONE files in case of failure
Date: Thu, 25 Nov 2010 22:20:43 +0100 [thread overview]
Message-ID: <20101125212050.5188.74945.chriscool@tuxfamily.org> (raw)
In-Reply-To: <20101125210138.5188.13115.chriscool@tuxfamily.org>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
builtin/revert.c | 42 ++++++++++++++++++++++++++++++-----
t/t3508-cherry-pick-many-commits.sh | 22 ++++++++++++++++++
2 files changed, 58 insertions(+), 6 deletions(-)
diff --git a/builtin/revert.c b/builtin/revert.c
index 7429be2..27e9d6f 100644
--- a/builtin/revert.c
+++ b/builtin/revert.c
@@ -14,6 +14,7 @@
#include "rerere.h"
#include "merge-recursive.h"
#include "refs.h"
+#include "dir.h"
/*
* This implements the builtins revert and cherry-pick.
@@ -55,6 +56,11 @@ struct args_info {
#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
+#define SEQ_DIR "sequencer"
+#define SEQ_PATH git_path(SEQ_DIR)
+#define TODO_FILE git_path(SEQ_DIR "/git-cherry-pick-todo")
+#define DONE_FILE git_path(SEQ_DIR "/git-cherry-pick-done")
+
static char *get_encoding(const char *message, const unsigned char *sha1);
static const char * const *revert_or_cherry_pick_usage(struct args_info *info)
@@ -651,7 +657,25 @@ static int ff_incompatible(int val, const char *opt)
return val ? error("cherry-pick --ff cannot be used with %s", opt) : 0;
}
-static int pick_commits(struct args_info *infos)
+static int save_todo_and_done(int res, struct args_info *infos,
+ struct commit *commit,
+ struct commit_list *todo_list,
+ struct commit_list **done_list)
+{
+ if (res) {
+ if (!file_exists(SEQ_PATH) && mkdir(SEQ_PATH, 0777))
+ die_errno("Could not create sequencer directory '%s'",
+ SEQ_PATH);
+ if (commit)
+ commit_list_insert(commit, &todo_list);
+ create_todo_file(TODO_FILE, 0, todo_list, "", infos);
+ *done_list = reverse_commit_list(*done_list);
+ create_todo_file(DONE_FILE, 0, *done_list, "", infos);
+ }
+ return res;
+}
+
+static int pick_commits(struct args_info *infos, struct commit_list **done_list)
{
struct rev_info revs;
struct commit *commit;
@@ -662,22 +686,24 @@ static int pick_commits(struct args_info *infos)
(res = ff_incompatible(infos->no_commit, "--no_commit")) ||
(res = ff_incompatible(infos->no_replay, "-x")) ||
(res = ff_incompatible(infos->edit, "--edit"))))
- return res;
+ return save_todo_and_done(res, infos, NULL, NULL, done_list);
if ((res = read_and_refresh_cache(me)) ||
(res = prepare_revs(&revs, infos)))
- return res;
+ return save_todo_and_done(res, infos, NULL, NULL, done_list);
while ((commit = get_revision(&revs)) &&
!(res = do_pick_commit(infos, commit)))
- ; /* do nothing */
+ commit_list_insert(commit, done_list);
- return res;
+ return save_todo_and_done(res, infos, commit, revs.commits, done_list);
}
static int revert_or_cherry_pick(int argc, const char **argv, int revert, int edit)
{
struct args_info infos;
+ struct commit_list *done_list = NULL;
+ int res;
git_config(git_default_config, NULL);
me = revert ? "revert" : "cherry-pick";
@@ -686,7 +712,11 @@ static int revert_or_cherry_pick(int argc, const char **argv, int revert, int ed
infos.action = revert ? REVERT : CHERRY_PICK;
parse_args(argc, argv, &infos);
- return pick_commits(&infos);
+ res = pick_commits(&infos, &done_list);
+
+ free_commit_list(done_list);
+
+ return res;
}
int cmd_revert(int argc, const char **argv, const char *prefix)
diff --git a/t/t3508-cherry-pick-many-commits.sh b/t/t3508-cherry-pick-many-commits.sh
index 8e09fd0..9213d59 100755
--- a/t/t3508-cherry-pick-many-commits.sh
+++ b/t/t3508-cherry-pick-many-commits.sh
@@ -156,4 +156,26 @@ test_expect_success 'cherry-pick --stdin works' '
check_head_differs_from fourth
'
+test_expect_success 'create some files to test --continue' '
+ TODO_FILE="$(git rev-parse --git-dir)/sequencer/git-cherry-pick-todo" &&
+ DONE_FILE="$(git rev-parse --git-dir)/sequencer/git-cherry-pick-done" &&
+
+ cat <<-EOF >expected_todo &&
+ pick $(git rev-parse --short fourth) # fourth
+ EOF
+
+ cat <<-EOF >expected_done
+ pick $(git rev-parse --short second) # second
+ EOF
+'
+
+test_expect_success 'failed cherry-pick produces todo and done files' '
+ git checkout -f master &&
+ git reset --hard first &&
+ test_tick &&
+ test_must_fail git cherry-pick fourth~2 fourth &&
+ test_cmp expected_todo "$TODO_FILE" &&
+ test_cmp expected_done "$DONE_FILE"
+'
+
test_done
--
1.7.3.2.504.g59d466
next prev parent reply other threads:[~2010-11-26 5:56 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-25 21:20 [RFC/PATCH 00/18] WIP implement cherry-pick/revert --continue Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 01/18] advice: add error_resolve_conflict() function Christian Couder
2010-11-26 5:56 ` Jonathan Nieder
2010-11-25 21:20 ` [RFC/PATCH 02/18] revert: change many die() calls into "return error()" calls Christian Couder
2010-11-26 6:05 ` Jonathan Nieder
2010-11-25 21:20 ` [RFC/PATCH 03/18] usage: implement error_errno() the same way as die_errno() Christian Couder
2010-11-26 6:07 ` Jonathan Nieder
2010-11-26 18:35 ` Junio C Hamano
2010-11-25 21:20 ` [RFC/PATCH 04/18] revert: don't die when write_message() fails Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 05/18] commit: move reverse_commit_list() into commit.{h, c} Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 06/18] revert: remove "commit" global variable Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 07/18] revert: put option information in an option struct Christian Couder
2010-11-26 6:18 ` Jonathan Nieder
2010-11-26 18:42 ` Junio C Hamano
2010-11-25 21:20 ` [RFC/PATCH 08/18] revert: refactor code into a new pick_commits() function Christian Couder
2010-11-27 3:50 ` Daniel Barkalow
2010-11-25 21:20 ` [RFC/PATCH 09/18] revert: make pick_commits() return an error on --ff incompatible option Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 10/18] revert: make read_and_refresh_cache() and prepare_revs() return errors Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 11/18] revert: add get_todo_content() and create_todo_file() Christian Couder
2010-11-25 21:20 ` Christian Couder [this message]
2010-11-25 21:20 ` [RFC/PATCH 13/18] revert: add option parsing for option --continue Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 14/18] revert: move global variable "me" into "struct args_info" Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 15/18] revert: add NONE action and make parse_args() manage it Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 16/18] revert: implement parsing TODO and DONE files Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 17/18] revert: add remaining instructions in todo file Christian Couder
2010-11-25 21:20 ` [RFC/PATCH 18/18] revert: implement --continue processing Christian Couder
2010-11-26 6:28 ` [RFC/PATCH 00/18] WIP implement cherry-pick/revert --continue Jonathan Nieder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20101125212050.5188.74945.chriscool@tuxfamily.org \
--to=chriscool@tuxfamily.org \
--cc=Johannes.Schindelin@gmx.de \
--cc=barkalow@iabervon.org \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jrnieder@gmail.com \
--cc=peff@peff.net \
--cc=s-beyer@gmx.net \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).