Re: [PATCH] config: Add new option to open an editor.
From: Felipe Contreras <hidden>
Date: 2016-06-15 22:46:05
On Wed, Feb 4, 2009 at 5:20 PM, Johannes Schindelin [off-list ref] wrote:
Hi, On Wed, 4 Feb 2009, Felipe Contreras wrote:quoted
On Wed, Feb 4, 2009 at 4:53 PM, Jeff King [off-list ref] wrote:quoted
On Wed, Feb 04, 2009 at 12:40:26AM +0200, Felipe Contreras wrote:quoted
+ } else if (!strcmp(argv[1], "--edit") || !strcmp(argv[1], "-e")) { + char *config_filename; + if (config_exclusive_filename) + config_filename = xstrdup(config_exclusive_filename); + else + config_filename = git_pathdup("config"); + launch_editor(config_filename, NULL, NULL); + free(config_filename); + return 0; } elseWith this patch, won't I get different behavior from: git config -e --global versus git config --global -eJust like you get different behavior from: git config -l --global and git config --global -l... which will be fixed once you parseopt'ified builtin-config, right?
I'm going to cleanup the big string, I still haven't looked at parseopt, if it's not too complicated I'll do it. -- Felipe Contreras