]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-pull.txt
Diff: -l<num> to limit rename/copy detection.
[thirdparty/git.git] / Documentation / git-pull.txt
CommitLineData
215a7ad1
JH
1git-pull(1)
2===========
3f971fc4 3v0.99.4, Aug 2005
2cf565c5
DG
4
5NAME
6----
215a7ad1 7git-pull - Pull and merge from another repository.
2cf565c5
DG
8
9
10SYNOPSIS
11--------
215a7ad1 12'git-pull' <repository> <refspec>...
0c04094b 13
2cf565c5
DG
14
15DESCRIPTION
16-----------
215a7ad1 17Runs 'git-fetch' with the given parameters.
ab9b3138
JH
18
19When only one ref is downloaded, runs 'git resolve' to merge it
20into the local HEAD. Otherwise uses 'git octopus' to merge them
21into the local HEAD.
0c04094b
JH
22
23
24OPTIONS
25-------
26include::pull-fetch-param.txt[]
2cf565c5
DG
27
28
29Author
30------
3f971fc4
JH
31Written by Linus Torvalds <torvalds@osdl.org>
32and Junio C Hamano <junkio@cox.net>
2cf565c5
DG
33
34Documentation
35--------------
36Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
37
38GIT
39---
a7154e91 40Part of the gitlink:git[7] suite
2cf565c5 41