git/Documentation: fix SYNOPSIS style bugs
[git/jnareb-git.git] / Documentation / git-http-fetch.txt
blobbc1a13289153976c31718d3694de2a188d5b8478
1 git-http-fetch(1)
2 =================
4 NAME
5 ----
6 git-http-fetch - downloads a remote git repository via HTTP
9 SYNOPSIS
10 --------
11 'git-http-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] <commit> <url>
13 DESCRIPTION
14 -----------
15 Downloads a remote git repository via HTTP.
17 OPTIONS
18 -------
19 commit-id::
20         Either the hash or the filename under [URL]/refs/ to
21         pull.
23 -c::
24         Get the commit objects.
25 -t::
26         Get trees associated with the commit objects.
27 -a::
28         Get all the objects.
29 -v::
30         Report what is downloaded.
32 -w <filename>::
33         Writes the commit-id into the filename under $GIT_DIR/refs/<filename> on
34         the local end after the transfer is complete.
36 Author
37 ------
38 Written by Linus Torvalds <torvalds@osdl.org>
40 Documentation
41 --------------
42 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
44 GIT
45 ---
46 Part of the gitlink:git[7] suite