diff options
author | Jeff King <peff@peff.net> | 2015-11-20 06:56:11 -0500 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2015-11-20 06:56:11 -0500 |
commit | dbba85e46b9c7450710a23208ca1868179330e1e (patch) | |
tree | 1de2e7302f6872f263e187859b2917ad13f826a4 /Documentation | |
parent | 45014beac004a610938a265698605c18ab126087 (diff) | |
parent | 948bfa2c0f40a97d670c6a3fc22c05ceb2ec2c3f (diff) | |
download | git-dbba85e46b9c7450710a23208ca1868179330e1e.tar.gz |
Merge branch 'lf/ref-is-hidden-namespace'
Extend transfer.hideRefs to work better with use of namespaces.
* lf/ref-is-hidden-namespace:
t5509: add basic tests for hideRefs
hideRefs: add support for matching full refs
upload-pack: strip refs before calling ref_is_hidden()
config.txt: document the semantics of hideRefs with namespaces
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 391a0c3c85..b4b01948d0 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -2673,6 +2673,15 @@ You may also include a `!` in front of the ref name to negate the entry, explicitly exposing it, even if an earlier entry marked it as hidden. If you have multiple hideRefs values, later entries override earlier ones (and entries in more-specific config files override less-specific ones). ++ +If a namespace is in use, the namespace prefix is stripped from each +reference before it is matched against `transfer.hiderefs` patterns. +For example, if `refs/heads/master` is specified in `transfer.hideRefs` and +the current namespace is `foo`, then `refs/namespaces/foo/refs/heads/master` +is omitted from the advertisements but `refs/heads/master` and +`refs/namespaces/bar/refs/heads/master` are still advertised as so-called +"have" lines. In order to match refs before stripping, add a `^` in front of +the ref name. If you combine `!` and `^`, `!` must be specified first. transfer.unpackLimit:: When `fetch.unpackLimit` or `receive.unpackLimit` are |