diff options
author | Matthieu Moy <Matthieu.Moy@imag.fr> | 2013-02-12 10:24:44 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-12 10:05:38 -0800 |
commit | d32805dce7bdc45a3e4045e999fc5d56e3b46a82 (patch) | |
tree | d0948090ec7fe05f4152a3f6c0c01c437df36bb6 /builtin/add.c | |
parent | 901fd180c9d19025bafefc34e131125628169bdd (diff) | |
download | git-d32805dce7bdc45a3e4045e999fc5d56e3b46a82.tar.gz |
Replace filepattern with pathspec for consistency
pathspec is the most widely used term, and is the one defined in
gitglossary.txt. <filepattern> was used only in the synopsys for git-add
and git-commit, and in git-add.txt. Get rid of it.
This patch is obtained with by running:
perl -pi -e 's/filepattern/pathspec/' `git grep -l filepattern`
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/add.c')
-rw-r--r-- | builtin/add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/add.c b/builtin/add.c index e664100c71..632594768d 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -16,7 +16,7 @@ #include "bulk-checkin.h" static const char * const builtin_add_usage[] = { - N_("git add [options] [--] <filepattern>..."), + N_("git add [options] [--] <pathspec>..."), NULL }; static int patch_interactive, add_interactive, edit_interactive; |