summaryrefslogtreecommitdiff
path: root/git-rebase--interactive.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-09-21 15:15:28 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-09-21 15:15:28 -0700
commitae1ae600db5e159c4563ee080531b9500c26d635 (patch)
tree95925e9c5cccc44f2aeeaeff65f035e9093d843a /git-rebase--interactive.sh
parentMerge branch 'va/i18n' (diff)
parentrebase-interactive: drop early check for valid ident (diff)
downloadtgif-ae1ae600db5e159c4563ee080531b9500c26d635.tar.xz
Merge branch 'jk/rebase-i-drop-ident-check'
Even when "git pull --rebase=preserve" (and the underlying "git rebase --preserve") can complete without creating any new commit (i.e. fast-forwards), it still insisted on having a usable ident information (read: user.email is set correctly), which was less than nice. As the underlying commands used inside "git rebase" would fail with a more meaningful error message and advice text when the bogus ident matters, this extra check was removed. * jk/rebase-i-drop-ident-check: rebase-interactive: drop early check for valid ident
Diffstat (limited to 'git-rebase--interactive.sh')
-rw-r--r--git-rebase--interactive.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index 6fd6d4e5f6..5e474e4a85 100644
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -1141,9 +1141,6 @@ To continue rebase after editing, run:
;;
esac
-git var GIT_COMMITTER_IDENT >/dev/null ||
- die "$(gettext "You need to set your committer info first")"
-
comment_for_reflog start
if test ! -z "$switch_to"