2005-09-08 00:26:23 +00:00
|
|
|
git-fetch(1)
|
|
|
|
============
|
2005-07-16 07:17:42 +00:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 16:24:50 +00:00
|
|
|
git-fetch - Download objects and a head from another repository
|
2005-07-16 07:17:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-11-07 05:30:56 +00:00
|
|
|
'git-fetch' <options> <repository> <refspec>...
|
2005-07-16 07:17:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-08-24 23:23:08 +00: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-07 05:30:56 +00:00
|
|
|
in `.git/FETCH_HEAD`. This information is left for a later merge
|
2005-12-08 22:04:33 +00:00
|
|
|
operation done by "git merge".
|
2005-07-16 07:17:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-11-07 05:30:56 +00:00
|
|
|
include::fetch-options.txt[]
|
2005-07-16 07:17:42 +00:00
|
|
|
|
2005-11-07 05:30:56 +00:00
|
|
|
include::pull-fetch-param.txt[]
|
2005-10-20 04:25:39 +00:00
|
|
|
|
2006-02-05 23:29:49 +00:00
|
|
|
include::urls.txt[]
|
2005-07-16 07:17:42 +00:00
|
|
|
|
2005-11-05 09:37:00 +00:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
gitlink:git-pull[1]
|
|
|
|
|
|
|
|
|
2005-07-16 07:17:42 +00:00
|
|
|
Author
|
|
|
|
------
|
2005-08-15 00:24:36 +00:00
|
|
|
Written by Linus Torvalds <torvalds@osdl.org> and
|
|
|
|
Junio C Hamano <junkio@cox.net>
|
2005-07-16 07:17:42 +00:00
|
|
|
|
|
|
|
Documentation
|
2005-10-03 17:16:30 +00:00
|
|
|
-------------
|
2005-07-16 07:17:42 +00:00
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 10:10:51 +00:00
|
|
|
Part of the gitlink:git[7] suite
|