diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-10 07:14:55 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-10 07:14:55 -0800 |
commit | 4d44cb195aca5b744fd9f149af513637ff343a67 (patch) | |
tree | eacf7fcf57466599eda4074a3e828654abb7e2bc | |
parent | git-status -v (diff) | |
parent | t6000: fix a careless test library add-on. (diff) | |
download | tgif-4d44cb195aca5b744fd9f149af513637ff343a67.tar.xz |
Merge branch 'jc/empty-commit'
* jc/empty-commit:
t6000: fix a careless test library add-on.
Do not allow empty name or email.
-rw-r--r-- | ident.c | 5 | ||||
-rwxr-xr-x | t/t6000lib.sh | 7 |
2 files changed, 11 insertions, 1 deletions
@@ -167,6 +167,11 @@ static const char *get_ident(const char *name, const char *email, name = git_default_name; if (!email) email = git_default_email; + + if (!*name || !*email) + die("empty ident %s <%s> not allowed", + name, email); + strcpy(date, git_default_date); if (date_str) parse_date(date_str, date, sizeof(date)); diff --git a/t/t6000lib.sh b/t/t6000lib.sh index 01f796e9c8..c6752af48e 100755 --- a/t/t6000lib.sh +++ b/t/t6000lib.sh @@ -51,7 +51,12 @@ as_author() export GIT_AUTHOR_EMAIL="$_author" "$@" - export GIT_AUTHOR_EMAIL="$_save" + if test -z "$_save" + then + unset GIT_AUTHOR_EMAIL + else + export GIT_AUTHOR_EMAIL="$_save" + fi } commit_date() |