Remove -d from *-fetch usage strings

This is a really ancient remnant of the short era of delta objects stored
directly in the object database.

Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Petr Baudis
2006-07-27 20:58:53 +02:00
committed by Junio C Hamano
parent 6c35119ac7
commit cc41cd2e60
3 changed files with 4 additions and 4 deletions

View File

@ -1245,7 +1245,7 @@ int main(int argc, char **argv)
arg++; arg++;
} }
if (argc < arg + 2) { if (argc < arg + 2) {
usage("git-http-fetch [-c] [-t] [-a] [-d] [-v] [--recover] [-w ref] commit-id url"); usage("git-http-fetch [-c] [-t] [-a] [-v] [--recover] [-w ref] commit-id url");
return 1; return 1;
} }
commit_id = argv[arg]; commit_id = argv[arg];

View File

@ -194,7 +194,7 @@ int fetch_ref(char *ref, unsigned char *sha1)
} }
static const char local_pull_usage[] = static const char local_pull_usage[] =
"git-local-fetch [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [-l] [-s] [-n] commit-id path"; "git-local-fetch [-c] [-t] [-a] [-v] [-w filename] [--recover] [-l] [-s] [-n] commit-id path";
/* /*
* By default we only use file copy. * By default we only use file copy.

View File

@ -120,7 +120,7 @@ int fetch_ref(char *ref, unsigned char *sha1)
static const char ssh_fetch_usage[] = static const char ssh_fetch_usage[] =
MY_PROGRAM_NAME MY_PROGRAM_NAME
" [-c] [-t] [-a] [-v] [-d] [--recover] [-w ref] commit-id url"; " [-c] [-t] [-a] [-v] [--recover] [-w ref] commit-id url";
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
char *commit_id; char *commit_id;