From: Junio C Hamano Date: Tue, 20 Feb 2007 04:52:14 +0000 (+0000) Subject: Autogenerated HTML docs for v1.5.0.1-37-g1e592 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0bbd467b4f8dc271d63ec8412b6a8a934b11aa0b;p=git.git Autogenerated HTML docs for v1.5.0.1-37-g1e592 --- diff --git a/RelNotes-1.5.0.txt b/RelNotes-1.5.0.txt index 599efb8c9..daf4bdb0d 100644 --- a/RelNotes-1.5.0.txt +++ b/RelNotes-1.5.0.txt @@ -448,7 +448,7 @@ Updates in v1.5.0 since v1.4.4 series - There is a partial support for 'shallow' repositories that keeps only recent history. A 'shallow clone' is created by specifying how deep that truncated history should be - (e.g. "git clone --depth=5 git://some.where/repo.git"). + (e.g. "git clone --depth 5 git://some.where/repo.git"). Currently a shallow repository has number of limitations: diff --git a/config.txt b/config.txt index 38655350f..d8e696f4c 100644 --- a/config.txt +++ b/config.txt @@ -439,6 +439,10 @@ pull.octopus:: pull.twohead:: The default merge strategy to use when pulling a single branch. +remote.fetch:: + The list of remotes which are fetched by "git remote update". + See gitlink:git-remote[1]. + remote..url:: The URL of a remote repository. See gitlink:git-fetch[1] or gitlink:git-push[1]. diff --git a/git-clone.html b/git-clone.html index 3aab15d54..1325df92b 100644 --- a/git-clone.html +++ b/git-clone.html @@ -275,7 +275,7 @@ git-clone(1) Manual Page
git-clone [--template=<template_directory>] [-l [-s]] [-q] [-n] [--bare] [-o <name>] [-u <upload-pack>] [--reference <repository>] - [--depth=<depth>] <repository> [<directory>]
+ [--depth <depth>] <repository> [<directory>]

DESCRIPTION

@@ -413,7 +413,7 @@ configuration variables.

---depth=<depth> +--depth <depth>

@@ -521,7 +521,7 @@ Create a repository on the kernel.org machine that borrows from Linus

diff --git a/git-clone.txt b/git-clone.txt index 707376f22..6d32c491a 100644 --- a/git-clone.txt +++ b/git-clone.txt @@ -11,7 +11,7 @@ SYNOPSIS [verse] 'git-clone' [--template=] [-l [-s]] [-q] [-n] [--bare] [-o ] [-u ] [--reference ] - [--depth=] [] + [--depth ] [] DESCRIPTION ----------- @@ -96,7 +96,7 @@ OPTIONS if unset the templates are taken from the installation defined default, typically `/usr/share/git-core/templates`. ---depth=:: +--depth :: Create a 'shallow' clone with a history truncated to the specified number of revs. A shallow repository has number of limitations (you cannot clone or fetch from diff --git a/git-config.html b/git-config.html index a9bcaa86c..719a4dfed 100644 --- a/git-config.html +++ b/git-config.html @@ -1232,6 +1232,15 @@ pull.twohead

+remote.fetch +
+
+

+ The list of remotes which are fetched by "git remote update". + See git-remote(1). +

+
+
remote.<name>.url
@@ -1419,7 +1428,7 @@ transfer.unpackLimit diff --git a/git-remote.html b/git-remote.html index f00c00ca6..b4c767fcb 100644 --- a/git-remote.html +++ b/git-remote.html @@ -276,7 +276,8 @@ git-remote(1) Manual Page
git-remote git-remote add <name> <url> git-remote show <name> -git-remote prune <name>
+git-remote prune <name> +git-remote update

DESCRIPTION

@@ -312,7 +313,18 @@ Gives some information about the remote <name>.

Deletes all stale tracking branches under <name>. These stale branches have already been removed from the remote repository -referenced by <name>, but are still locally available in "remotes/<name>". +referenced by <name>, but are still locally available in +"remotes/<name>". +

+
+
+update +
+
+

+Fetch updates for the remotes in the repository. By default all remotes +are updated, but this can be configured via the configuration parameter +remote.fetch. (See git-config(1)).

@@ -366,7 +378,7 @@ $ git checkout -b nfs linux-nfs/master diff --git a/git-remote.txt b/git-remote.txt index a60c31a31..06ba2e6f2 100644 --- a/git-remote.txt +++ b/git-remote.txt @@ -13,6 +13,7 @@ SYNOPSIS 'git-remote' add 'git-remote' show 'git-remote' prune +'git-remote' update DESCRIPTION ----------- @@ -40,7 +41,14 @@ Gives some information about the remote . Deletes all stale tracking branches under . These stale branches have already been removed from the remote repository -referenced by , but are still locally available in "remotes/". +referenced by , but are still locally available in +"remotes/". + +'update':: + +Fetch updates for the remotes in the repository. By default all remotes +are updated, but this can be configured via the configuration parameter +'remote.fetch'. (See gitlink:git-config[1]). DISCUSSION diff --git a/git.html b/git.html index 08e14fc09..6ba1dd0a8 100644 --- a/git.html +++ b/git.html @@ -2290,7 +2290,7 @@ contributors on the git-list <git@vger.kernel.org>.