diff options
author | Junio C Hamano <junkio@cox.net> | 2006-09-24 19:20:26 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-24 19:20:26 -0700 |
commit | 700899b624f368af6f2322fc10c6a0350d398694 (patch) | |
tree | 8fae533f54b87636539a0cc89ae1419b18c925a9 /Documentation | |
parent | Merge branch 'jl/daemon' (diff) | |
parent | Add test for the default merges in fetch. (diff) | |
download | tgif-700899b624f368af6f2322fc10c6a0350d398694.tar.xz |
Merge branch 'sb/branch-attributes'
* sb/branch-attributes:
Add test for the default merges in fetch.
fetch: get the remote branches to merge from the branch properties
Add t5510 to test per branch configuration affecting git-fetch.
Fetch: default remote repository from branch properties
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index bb2fbc324e..98c1f3e2e3 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -119,6 +119,13 @@ apply.whitespace:: Tells `git-apply` how to handle whitespaces, in the same way as the '--whitespace' option. See gitlink:git-apply[1]. +branch.<name>.remote:: + When in branch <name>, it tells `git fetch` which remote to fetch. + +branch.<name>.merge:: + When in branch <name>, it tells `git fetch` the default remote branch + to be merged. + pager.color:: A boolean to enable/disable colored output when the pager is in use (default is true). |