aboutsummaryrefslogtreecommitdiff
path: root/git-am.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-07-13 15:45:38 -0700
committerJunio C Hamano <gitster@pobox.com>2008-07-13 15:45:38 -0700
commit447d0cca45920bbe409361bb532444f810c75546 (patch)
tree5dcc6d9b52da50102b842e57c1dbcd3c1274f475 /git-am.sh
parentfa6200fc02ad79124322b97fc26f79467789838f (diff)
parent191a8e32b38c7ff0dd884df7bd323b7a5bd4336c (diff)
downloadgit-447d0cca45920bbe409361bb532444f810c75546.tar.gz
git-447d0cca45920bbe409361bb532444f810c75546.tar.xz
Merge branch 'maint' to sync with 1.5.6.3
* maint: GIT 1.5.6.3 git-am: Do not exit silently if committer is unset t0004: fix timing bug git-mailinfo: document the -n option Fix backwards-incompatible handling of core.sharedRepository
Diffstat (limited to 'git-am.sh')
-rwxr-xr-xgit-am.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-am.sh b/git-am.sh
index 2c517ede5..83b277acf 100755
--- a/git-am.sh
+++ b/git-am.sh
@@ -30,7 +30,8 @@ set_reflog_action am
require_work_tree
cd_to_toplevel
-git var GIT_COMMITTER_IDENT >/dev/null || exit
+git var GIT_COMMITTER_IDENT >/dev/null ||
+ die "You need to set your committer info first"
stop_here () {
echo "$1" >"$dotest/next"