1git-pull(1) 2=========== 3v0.99.4, Aug 2005 4 5NAME 6---- 7git-pull - Pull and merge from another repository. 8 9 10SYNOPSIS 11-------- 12'git-pull' <repository> <refspec>... 13 14 15DESCRIPTION 16----------- 17Runs 'git-fetch' with the given parameters. 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. 22 23 24OPTIONS 25------- 26include::pull-fetch-param.txt[] 27 28 29Author 30------ 31Written by Linus Torvalds <torvalds@osdl.org> 32and Junio C Hamano <junkio@cox.net> 33 34Documentation 35-------------- 36Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. 37 38GIT 39--- 40Part of the gitlink:git[7] suite 41