[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 oys...@gmail.com --- This is scratching a

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

2015-07-17 Thread Remi Galan Alfonso
Hi, Øystein Walle oys...@gmail.com 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 =

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

2015-07-17 Thread Junio C Hamano
Øystein Walle oys...@gmail.com 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