diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2016-12-04 15:03:59 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-12-05 14:50:57 -0800 |
commit | 6d8738653297e839ae59ff3284c271681cc14396 (patch) | |
tree | f0a23642c87758ff5a1027273a5c0dd5c8755402 /builtin/fetch.c | |
parent | 2ddaa42783dcead77b840d5a26f20ba7d7ca3ec8 (diff) | |
download | git-6d8738653297e839ae59ff3284c271681cc14396.tar.gz |
clone,fetch: explain the shallow-clone option a little more clearlyah/grammos
"deepen by excluding" does not make sense because excluding a revision
does not deepen a repository; it makes the repository more shallow.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/fetch.c')
-rw-r--r-- | builtin/fetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c index b6a5597cbf..fc74c8471c 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -122,7 +122,7 @@ static struct option builtin_fetch_options[] = { OPT_STRING(0, "shallow-since", &deepen_since, N_("time"), N_("deepen history of shallow repository based on time")), OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"), - N_("deepen history of shallow clone by excluding rev")), + N_("deepen history of shallow clone, excluding rev")), OPT_INTEGER(0, "deepen", &deepen_relative, N_("deepen history of shallow clone")), { OPTION_SET_INT, 0, "unshallow", &unshallow, NULL, |