summaryrefslogtreecommitdiffstats
path: root/fetch-options.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2006-01-08 16:53:28 -0800
committerJunio C Hamano <junio@hera.kernel.org>2006-01-08 16:53:28 -0800
commit4d04a4022e7f9f3ada3a64e2010ce65e1fcc5c64 (patch)
tree9c9435c06dde528c101813360d5d8ad556d1640e /fetch-options.txt
parent235a91e6b0d1d18a2517cf7e0a18278a6912bdb0 (diff)
downloadgit-htmldocs-4d04a4022e7f9f3ada3a64e2010ce65e1fcc5c64.tar.gz
Autogenerated HTML docs for 5a2282de13c4da13f979185e652c8a08e2481fd1
Diffstat (limited to 'fetch-options.txt')
-rw-r--r--fetch-options.txt18
1 files changed, 13 insertions, 5 deletions
diff --git a/fetch-options.txt b/fetch-options.txt
index 200c9b240..1fe8423b9 100644
--- a/fetch-options.txt
+++ b/fetch-options.txt
@@ -10,15 +10,23 @@
fetches is a descendant of `<lbranch>`. This option
overrides that check.
+\--no-tags::
+ By default, `git-fetch` fetches tags that point at
+ objects that are downloaded from the remote repository
+ and stores them locally. This option disables this
+ automatic tag following.
+
-t, \--tags::
- By default, the git core utilities will not fetch and store
- tags under the same name as the remote repository; ask it
- to do so using `--tags`. Using this option will bound the
- list of objects pulled to the remote tags. Commits in branches
- beyond the tags will be ignored.
+ Most of the tags are fetched automatically as branch
+ heads are downloaded, but tags that do not point at
+ objects reachable from the branch heads that are being
+ tracked will not be fetched by this mechanism. This
+ flag lets all tags and their associated objects be
+ downloaded.
-u, \--update-head-ok::
By default `git-fetch` refuses to update the head which
corresponds to the current branch. This flag disables the
check. Note that fetching into the current branch will not
update the index and working directory, so use it with care.
+