Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-04-10 09:43:18 +0400
committerJunio C Hamano <gitster@pobox.com>2010-04-10 09:43:18 +0400
commit3b0c19663e7976cd32188b42e762c980d1bb93d4 (patch)
tree73c9c829d7cc48cfa92417c8f9c2160c3f3a5882 /Documentation
parentda288e25d9e10b746cf3b311cb4503d1810cde37 (diff)
parent54fd955c211db6f4a2c91301f792ec9de86eed31 (diff)
Merge branch 'maint'
* maint: Let check_preimage() use memset() to initialize "struct checkout" fetch/push: fix usage strings
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-fetch.txt8
-rw-r--r--Documentation/git-push.txt2
2 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/git-fetch.txt b/Documentation/git-fetch.txt
index 948ea26c5a..400fe7f956 100644
--- a/Documentation/git-fetch.txt
+++ b/Documentation/git-fetch.txt
@@ -8,13 +8,13 @@ git-fetch - Download objects and refs from another repository
SYNOPSIS
--------
-'git fetch' <options> <repository> <refspec>...
+'git fetch' [<options>] [<repository> [<refspec>...]]
-'git fetch' <options> <group>
+'git fetch' [<options>] <group>
-'git fetch' --multiple <options> [<repository> | <group>]...
+'git fetch' --multiple [<options>] [<repository> | <group>]...
-'git fetch' --all <options>
+'git fetch' --all [<options>]
DESCRIPTION
diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt
index 59dc8b197e..48570242fb 100644
--- a/Documentation/git-push.txt
+++ b/Documentation/git-push.txt
@@ -11,7 +11,7 @@ SYNOPSIS
[verse]
'git push' [--all | --mirror | --tags] [-n | --dry-run] [--receive-pack=<git-receive-pack>]
[--repo=<repository>] [-f | --force] [-v | --verbose] [-u | --set-upstream]
- [<repository> <refspec>...]
+ [<repository> [<refspec>...]]
DESCRIPTION
-----------