git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] rebase: check for errors from git-commit
@ 2006-06-28  9:11 Eric Wong
  2006-06-28  9:11 ` [PATCH 2/2] rebase: get rid of outdated MRESOLVEMSG Eric Wong
  2006-06-28  9:25 ` [PATCH 1/2] rebase: check for errors from git-commit Junio C Hamano
  0 siblings, 2 replies; 7+ messages in thread
From: Eric Wong @ 2006-06-28  9:11 UTC (permalink / raw)
  To: Junio C Hamano, git; +Cc: Eric Wong

commit does not always succeed, so we'll have to check for
it in the absence of set -e.  This fixes a regression
introduced in 9e4bc7dd1bb9d92491c475cec55147fa0b3f954d

Signed-off-by: Eric Wong <normalperson@yhbt.net>
---

 I've grown used to having 'set -e' at the beginning of my shell
 scripts.  IMHO it'd be a good idea to start moving towards this
 eventually (even though shell scripts seem to be getting phased-out
 somewhat).

 git-rebase.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-rebase.sh b/git-rebase.sh
index 9ad1c44..47c8e8f 100755
--- a/git-rebase.sh
+++ b/git-rebase.sh
@@ -59,8 +59,8 @@ continue_merge () {
 
 	if test -n "`git-diff-index HEAD`"
 	then
+		git-commit -C "`cat $dotest/current`" || die 'Commit failed'
 		printf "Committed: %0${prec}d" $msgnum
-		git-commit -C "`cat $dotest/current`"
 	else
 		printf "Already applied: %0${prec}d" $msgnum
 	fi
-- 
1.4.1.rc1.g3cc8

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-06-29  9:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-28  9:11 [PATCH 1/2] rebase: check for errors from git-commit Eric Wong
2006-06-28  9:11 ` [PATCH 2/2] rebase: get rid of outdated MRESOLVEMSG Eric Wong
2006-06-28  9:25 ` [PATCH 1/2] rebase: check for errors from git-commit Junio C Hamano
2006-06-28  9:33   ` Eric Wong
2006-06-28  9:49     ` Junio C Hamano
2006-06-28  9:54       ` Eric Wong
2006-06-28  9:56         ` Junio C Hamano

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).