diff options
author | Matthieu Moy <Matthieu.Moy@imag.fr> | 2014-07-25 21:11:34 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-25 12:23:06 -0700 |
commit | 9830534e40bd15231357965441d4fe02a6a4810e (patch) | |
tree | 964385ea647fd36afc22d792c8541b460405a838 /ident.c | |
parent | 740c281d21ef5b27f6f1b942a4f2fc20f51e8c7e (diff) | |
download | git-9830534e40bd15231357965441d4fe02a6a4810e.tar.gz |
config --global --edit: create a template file if needed
When the user has no ~/.gitconfig file, git config --global --edit used
to launch an editor on an nonexistant file name.
Instead, create a file with a default content before launching the
editor. The template contains only commented-out entries, to save a few
keystrokes for the user. If the values are guessed properly, the user
will only have to uncomment the entries.
Advanced users teaching newbies can create a minimalistic configuration
faster for newbies. Beginners reading a tutorial advising to run "git
config --global --edit" as a first step will be slightly more guided for
their first contact with Git.
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ident.c')
-rw-r--r-- | ident.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ static void copy_email(const struct passwd *pw, struct strbuf *email) add_domainname(email); } -static const char *ident_default_name(void) +const char *ident_default_name(void) { if (!git_default_name.len) { copy_gecos(xgetpwuid_self(), &git_default_name); |