Re: [PATCH] fetch: add configuration for making --all default

2015-07-17 Thread Junio C Hamano
Øystein Walle writes: > Fetching from all remotes by default is useful if you're working on a > repo with few and/or fast remotes. That part is sensible. > It also lets you fetch from origin > even if the current branch's upstream is elsewhere without specifying it > explicitly. I do not think

Re: [PATCH] fetch: add configuration for making --all default

2015-07-17 Thread Remi Galan Alfonso
Hi, Øystein Walle writes: > +fetch.all:: > +If true, fetch will automatically behave as if the `--all` > +option was given on the command line uness a remote was given. The > +default is false. s/uness/unless > +test_expect_success 'git fetch (fetch.all = true)' ' > +

[PATCH] fetch: add configuration for making --all default

2015-07-17 Thread Øystein Walle
Fetching from all remotes by default is useful if you're working on a repo with few and/or fast remotes. It also lets you fetch from origin even if the current branch's upstream is elsewhere without specifying it explicitly. Signed-off-by: Øystein Walle --- This is scratching a itch I have. Most