Add "git checkout" that does what the name suggests
[git.git] / Documentation / git-http-pull.txt
blobe4b7b3789eec56444b782e8ba7a46bf87e7749e1
1 git-http-pull(1)
2 ================
3 v0.1, May 2005
5 NAME
6 ----
7 git-http-pull - Downloads a remote GIT repository via HTTP
10 SYNOPSIS
11 --------
12 'git-http-pull' [-c] [-t] [-a] [-v] [-d] [--recover] commit-id url
14 DESCRIPTION
15 -----------
16 Downloads a remote GIT repository via HTTP.
18 -c::
19         Get the commit objects.
20 -t::
21         Get trees associated with the commit objects.
22 -a::
23         Get all the objects.
24 -d::
25         Do not check for delta base objects (use this option
26         only when you know the remote repository is not
27         deltified).
28 --recover::
29         Check dependency of deltified object more carefully than
30         usual, to recover after earlier pull that was interrupted.
31 -v::
32         Report what is downloaded.
35 Author
36 ------
37 Written by Linus Torvalds <torvalds@osdl.org>
39 Documentation
40 --------------
41 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
43 GIT
44 ---
45 Part of the link:git.html[git] suite