* [DOC BUG] branch.autosetupmerge defaults to true, not false
@ 2008-02-11 8:46 Kalle Olavi Niemitalo
2008-02-11 9:13 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Kalle Olavi Niemitalo @ 2008-02-11 8:46 UTC (permalink / raw)
To: git
In Git v1.5.4.1, Documentation/config.txt describes:
> branch.autosetupmerge::
> Tells `git-branch` and `git-checkout` to setup new branches
> so that linkgit:git-pull[1] will appropriately merge from that
> remote branch. Note that even if this option is not set,
> this behavior can be chosen per-branch using the `--track`
> and `--no-track` options. This option defaults to false.
However, in builtin-branch.c:
> static int branch_track = 1;
...
> if (!strcmp(var, "branch.autosetupmerge"))
> branch_track = git_config_bool(var, value);
So if the option is not listed in .git/config, then it actually
defaults to true. A demonstration with a bit older version:
$ git --version
git version 1.5.4.rc3
$ git config --unset branch.autosetupmerge
$ git branch demo elinks.cz/master
Branch demo set up to track remote branch refs/remotes/elinks.cz/master.
$
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [DOC BUG] branch.autosetupmerge defaults to true, not false
2008-02-11 8:46 [DOC BUG] branch.autosetupmerge defaults to true, not false Kalle Olavi Niemitalo
@ 2008-02-11 9:13 ` Junio C Hamano
2008-02-11 11:27 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2008-02-11 9:13 UTC (permalink / raw)
To: Kalle Olavi Niemitalo; +Cc: git
Kalle Olavi Niemitalo <kon@iki.fi> writes:
> In Git v1.5.4.1, Documentation/config.txt describes:
>
>> branch.autosetupmerge::
>> Tells `git-branch` and `git-checkout` to setup new branches
>> so that linkgit:git-pull[1] will appropriately merge from that
>> remote branch. Note that even if this option is not set,
>> this behavior can be chosen per-branch using the `--track`
>> and `--no-track` options. This option defaults to false.
>
> However, in builtin-branch.c:
>
>> static int branch_track = 1;
> ...
>> if (!strcmp(var, "branch.autosetupmerge"))
>> branch_track = git_config_bool(var, value);
>
> So if the option is not listed in .git/config, then it actually
> defaults to true. A demonstration with a bit older version:
Correct. 34a3e69 (git-branch: default to --track) did it
without updating the documentation.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [DOC BUG] branch.autosetupmerge defaults to true, not false
2008-02-11 9:13 ` Junio C Hamano
@ 2008-02-11 11:27 ` Johannes Schindelin
2008-02-11 11:36 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2008-02-11 11:27 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Kalle Olavi Niemitalo, git
[PATCH] Document that the default of branch.autosetupmerge is true
In 34a3e69 (git-branch: default to --track) the default was changed to
true, to help new git users. But yours truly forgot to update the
documentation. This fixes it.
Noticed by Kalle Olavi Niemitalo.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
On Mon, 11 Feb 2008, Junio C Hamano wrote:
> Kalle Olavi Niemitalo <kon@iki.fi> writes:
>
> > In Git v1.5.4.1, Documentation/config.txt describes:
> >
> >> branch.autosetupmerge::
> >> Tells `git-branch` and `git-checkout` to setup new branches
> >> so that linkgit:git-pull[1] will appropriately merge from
> >> that remote branch. Note that even if this option is not
> >> set, this behavior can be chosen per-branch using the
> >> `--track` and `--no-track` options. This option defaults to
> >> false.
> >
> > However, in builtin-branch.c:
> >
> >> static int branch_track = 1;
> > ...
> >> if (!strcmp(var, "branch.autosetupmerge"))
> >> branch_track = git_config_bool(var, value);
> >
> > So if the option is not listed in .git/config, then it actually
> > defaults to true. A demonstration with a bit older version:
>
> Correct. 34a3e69 (git-branch: default to --track) did it
> without updating the documentation.
Yeah, sorry. I had hoped that Jakub or some other documentation
fan would step up to it.
Hopefully I did catch all places.
Documentation/config.txt | 2 +-
Documentation/git-branch.txt | 15 ++++++++-------
Documentation/git-checkout.txt | 7 ++++---
3 files changed, 13 insertions(+), 11 deletions(-)
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 59305a3..b5d682e 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -382,7 +382,7 @@ branch.autosetupmerge::
so that linkgit:git-pull[1] will appropriately merge from that
remote branch. Note that even if this option is not set,
this behavior can be chosen per-branch using the `--track`
- and `--no-track` options. This option defaults to false.
+ and `--no-track` options. This option defaults to true.
branch.<name>.remote::
When in branch <name>, it tells `git fetch` which remote to fetch.
diff --git a/Documentation/git-branch.txt b/Documentation/git-branch.txt
index 9ea9249..f1de846 100644
--- a/Documentation/git-branch.txt
+++ b/Documentation/git-branch.txt
@@ -35,11 +35,11 @@ Note that this will create the new branch, but it will not switch the
working tree to it; use "git checkout <newbranch>" to switch to the
new branch.
-When a local branch is started off a remote branch, git can setup the
+When a local branch is started off a remote branch, git sets up the
branch so that linkgit:git-pull[1] will appropriately merge from that
-remote branch. If this behavior is desired, it is possible to make it
-the default using the global `branch.autosetupmerge` configuration
-flag. Otherwise, it can be chosen per-branch using the `--track`
+remote branch. If this behavior is not desired, it is possible to
+disable it using the global `branch.autosetupmerge` configuration
+flag. That setting can be overridden by using the `--track`
and `--no-track` options.
With a '-m' or '-M' option, <oldbranch> will be renamed to <newbranch>.
@@ -109,10 +109,11 @@ OPTIONS
Set up configuration so that git-pull will automatically
retrieve data from the remote branch. Use this if you always
pull from the same remote branch into the new branch, or if you
- don't want to use "git pull <repository> <refspec>" explicitly. Set the
- branch.autosetupmerge configuration variable to true if you
+ don't want to use "git pull <repository> <refspec>" explicitly.
+ This behavior is the default. Set the
+ branch.autosetupmerge configuration variable to false if you
want git-checkout and git-branch to always behave as if
- '--track' were given.
+ '--no-track' were given.
--no-track::
When a branch is created off a remote branch,
diff --git a/Documentation/git-checkout.txt b/Documentation/git-checkout.txt
index 584359f..b4cfa04 100644
--- a/Documentation/git-checkout.txt
+++ b/Documentation/git-checkout.txt
@@ -52,10 +52,11 @@ OPTIONS
set up configuration so that git-pull will automatically
retrieve data from the remote branch. Use this if you always
pull from the same remote branch into the new branch, or if you
- don't want to use "git pull <repository> <refspec>" explicitly. Set the
- branch.autosetupmerge configuration variable to true if you
+ don't want to use "git pull <repository> <refspec>" explicitly.
+ This behavior is the default. Set the
+ branch.autosetupmerge configuration variable to false if you
want git-checkout and git-branch to always behave as if
- '--track' were given.
+ '--no-track' were given.
--no-track::
When -b is given and a branch is created off a remote branch,
--
1.5.4.1264.gb53928
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [DOC BUG] branch.autosetupmerge defaults to true, not false
2008-02-11 11:27 ` Johannes Schindelin
@ 2008-02-11 11:36 ` Johannes Schindelin
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Schindelin @ 2008-02-11 11:36 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Kalle Olavi Niemitalo, git
Hi,
On Mon, 11 Feb 2008, Johannes Schindelin wrote:
> [PATCH] Document that the default of branch.autosetupmerge is true
Ooops. That should have been the subject.
Embarassed,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-02-11 11:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-11 8:46 [DOC BUG] branch.autosetupmerge defaults to true, not false Kalle Olavi Niemitalo
2008-02-11 9:13 ` Junio C Hamano
2008-02-11 11:27 ` Johannes Schindelin
2008-02-11 11:36 ` Johannes Schindelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox