diff options
author | Matt Kraai <kraai@ftbfs.org> | 2010-02-24 15:18:25 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-25 00:34:00 +0100 |
commit | 8bb45b25b2230c84724f6f62bfcc04a79999a90c (patch) | |
tree | db26a10491eeb26c50ff011ab393fe3eeb9feca4 /builtin-commit.c | |
parent | Merge branch 'ml/maint-grep-doc' into maint (diff) | |
download | git-8bb45b25b2230c84724f6f62bfcc04a79999a90c.tar.xz git-8bb45b25b2230c84724f6f62bfcc04a79999a90c.zip |
commit: quote the user name in the example
If the user runs
git config --global user.name Your Name
as suggested, user.name will be set to "Your". With this patch, the
suggested command will be
git config --global user.name "Your Name"
which will set user.name to "Your Name" and hopefully help users avoid
the former mistake.
Signed-off-by: Matt Kraai <kraai@ftbfs.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | builtin-commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-commit.c b/builtin-commit.c index 55676fd874..46513bf90b 100644 --- a/builtin-commit.c +++ b/builtin-commit.c @@ -41,7 +41,7 @@ static const char implicit_ident_advice[] = "on your username and hostname. Please check that they are accurate.\n" "You can suppress this message by setting them explicitly:\n" "\n" -" git config --global user.name Your Name\n" +" git config --global user.name \"Your Name\"\n" " git config --global user.email you@example.com\n" "\n" "If the identity used for this commit is wrong, you can fix it with:\n" |