Re: [PATCH 1/2] show-ref.c: Add missing call to git_config()

2013-07-04 Thread Ramsay Jones
Junio C Hamano wrote: Ramsay Jones ram...@ramsay1.demon.co.uk writes: Yes, I will send a v2 (soon-ish, I hope). Ping? No need to hurry, but just to make sure this didn't disappear from everybody's radar. Yep, this is still on my TODO list. Sorry for being tardy on these patches. :(

Re: [PATCH 1/2] show-ref.c: Add missing call to git_config()

2013-07-01 Thread Junio C Hamano
Ramsay Jones ram...@ramsay1.demon.co.uk writes: Yes, I will send a v2 (soon-ish, I hope). Ping? No need to hurry, but just to make sure this didn't disappear from everybody's radar. Thanks. -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to

Re: [PATCH 1/2] show-ref.c: Add missing call to git_config()

2013-06-18 Thread Ramsay Jones
Junio C Hamano wrote: Ramsay Jones ram...@ramsay1.demon.co.uk writes: At present, 'git show-ref' ignores any attempt to set config variables (e.g. core.checkstat) from the command line using the -c option to git. I think what you really want to see is not giving -c and have it honored.

Re: [PATCH 1/2] show-ref.c: Add missing call to git_config()

2013-06-16 Thread Junio C Hamano
Ramsay Jones ram...@ramsay1.demon.co.uk writes: At present, 'git show-ref' ignores any attempt to set config variables (e.g. core.checkstat) from the command line using the -c option to git. I think what you really want to see is not giving -c and have it honored. git show-ref does

[PATCH 1/2] show-ref.c: Add missing call to git_config()

2013-06-15 Thread Ramsay Jones
At present, 'git show-ref' ignores any attempt to set config variables (e.g. core.checkstat) from the command line using the -c option to git. In order to enable such usage, add the missing call to git_config() from cmd_show_ref(). Signed-off-by: Ramsay Jones ram...@ramsay1.demon.co.uk ---