2005-09-07 18:26:23 -06:00
|
|
|
git-fetch(1)
|
|
|
|
============
|
2005-07-16 01:17:42 -06:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 09:24:50 -07:00
|
|
|
git-fetch - Download objects and a head from another repository
|
2005-07-16 01:17:42 -06:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-11-06 22:30:56 -07:00
|
|
|
'git-fetch' <options> <repository> <refspec>...
|
2005-07-16 01:17:42 -06:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-08-24 17:23:08 -06:00
|
|
|
Fetches named heads or tags from another repository, along with
|
|
|
|
the objects necessary to complete them.
|
|
|
|
|
|
|
|
The ref names and their object names of fetched refs are stored
|
2005-11-06 22:30:56 -07:00
|
|
|
in `.git/FETCH_HEAD`. This information is left for a later merge
|
2005-12-08 15:04:33 -07:00
|
|
|
operation done by "git merge".
|
2005-07-16 01:17:42 -06:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-11-06 22:30:56 -07:00
|
|
|
include::fetch-options.txt[]
|
2005-07-16 01:17:42 -06:00
|
|
|
|
2005-11-06 22:30:56 -07:00
|
|
|
include::pull-fetch-param.txt[]
|
2005-10-19 22:25:39 -06:00
|
|
|
|
2006-02-05 16:29:49 -07:00
|
|
|
include::urls.txt[]
|
2005-07-16 01:17:42 -06:00
|
|
|
|
2005-11-05 02:37:00 -07:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
gitlink:git-pull[1]
|
|
|
|
|
|
|
|
|
2005-07-16 01:17:42 -06:00
|
|
|
Author
|
|
|
|
------
|
2005-08-14 18:24:36 -06:00
|
|
|
Written by Linus Torvalds <torvalds@osdl.org> and
|
|
|
|
Junio C Hamano <junkio@cox.net>
|
2005-07-16 01:17:42 -06:00
|
|
|
|
|
|
|
Documentation
|
2005-10-03 11:16:30 -06:00
|
|
|
-------------
|
2005-07-16 01:17:42 -06:00
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 04:10:51 -06:00
|
|
|
Part of the gitlink:git[7] suite
|