* [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) [not found] <BF5B7CBE-ACA8-4D81-8FC0-8A7901205854@zib.de> @ 2008-07-29 5:17 ` Steffen Prohaska 2008-07-29 5:17 ` [FOR DEBUGGING] Stop installing BUILT_INS Steffen Prohaska 2008-07-29 5:24 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Shawn O. Pearce 0 siblings, 2 replies; 10+ messages in thread From: Steffen Prohaska @ 2008-07-29 5:17 UTC (permalink / raw) To: Johannes Sixt Cc: git, Junio C Hamano, Johannes Schindelin, Shawn O. Pearce, Steffen Prohaska We prefer running the dashless form, so we should use it in MinGW's start_command(), too. This solves a fundamental problem we have with the computation of system directories based on relative paths in combination with the new gitexecpath 'libexec/git-core'. The problem is that the program 'git' is hardlinked to directories with different depth. It is either used as 'bin/git' (1 directory) or as 'libexec/git-core/git-*' (2 directories). Thus, using the same relative path in system_path() yields different results when starting from the two locations. I recognized the problem because /etc/gitconfig is no longer read. This commit fixes the problem by always calling 'bin/git' for builtin commands. The computation in system_path() thus always starts from 'bin' and yields predictable results. This is however only part of a full solution to the problem outlined above. Remaining problems are: - Other code paths might run the dashed forms directly. - We have non-builtins that are implemented in C, e.g. fast-import.c. These non-builtins will still compute wrong paths. Signed-off-by: Steffen Prohaska <prohaska@zib.de> Acked-by: Johannes Sixt <johannes.sixt@telecom.at> --- run-command.c | 11 ++++------- 1 files changed, 4 insertions(+), 7 deletions(-) diff --git a/run-command.c b/run-command.c index 6e29fdf..a3b28a6 100644 --- a/run-command.c +++ b/run-command.c @@ -119,9 +119,8 @@ int start_command(struct child_process *cmd) } #else int s0 = -1, s1 = -1, s2 = -1; /* backups of stdin, stdout, stderr */ - const char *sargv0 = cmd->argv[0]; + const char **sargv = cmd->argv; char **env = environ; - struct strbuf git_cmd; if (cmd->no_stdin) { s0 = dup(0); @@ -165,9 +164,7 @@ int start_command(struct child_process *cmd) } if (cmd->git_cmd) { - strbuf_init(&git_cmd, 0); - strbuf_addf(&git_cmd, "git-%s", cmd->argv[0]); - cmd->argv[0] = git_cmd.buf; + cmd->argv = prepare_git_cmd(cmd->argv); } cmd->pid = mingw_spawnvpe(cmd->argv[0], cmd->argv, env); @@ -175,9 +172,9 @@ int start_command(struct child_process *cmd) if (cmd->env) free_environ(env); if (cmd->git_cmd) - strbuf_release(&git_cmd); + free(cmd->argv); - cmd->argv[0] = sargv0; + cmd->argv = sargv; if (s0 >= 0) dup2(s0, 0), close(s0); if (s1 >= 0) -- 1.6.0.rc0.79.gb0320 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [FOR DEBUGGING] Stop installing BUILT_INS 2008-07-29 5:17 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Steffen Prohaska @ 2008-07-29 5:17 ` Steffen Prohaska 2008-07-29 5:24 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Shawn O. Pearce 1 sibling, 0 replies; 10+ messages in thread From: Steffen Prohaska @ 2008-07-29 5:17 UTC (permalink / raw) To: Johannes Sixt Cc: git, Junio C Hamano, Johannes Schindelin, Shawn O. Pearce, Steffen Prohaska --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index b2bc0ef..e416ec7 100644 --- a/Makefile +++ b/Makefile @@ -1366,7 +1366,7 @@ endif ln -f "$$bindir/git$X" "$$execdir/git$X" || \ cp "$$bindir/git$X" "$$execdir/git$X"; \ fi && \ - { $(foreach p,$(BUILT_INS), $(RM) "$$execdir/$p" && ln "$$execdir/git$X" "$$execdir/$p" ;) } && \ + { $(foreach p,$(BUILT_INS), $(RM) "$$execdir/$p" ;) } && \ $(RM) "$$execdir/git$X" && \ ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X" -- 1.6.0.rc0.79.gb0320 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) 2008-07-29 5:17 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Steffen Prohaska 2008-07-29 5:17 ` [FOR DEBUGGING] Stop installing BUILT_INS Steffen Prohaska @ 2008-07-29 5:24 ` Shawn O. Pearce 2008-07-29 5:42 ` Junio C Hamano 2008-07-29 5:51 ` Steffen Prohaska 1 sibling, 2 replies; 10+ messages in thread From: Shawn O. Pearce @ 2008-07-29 5:24 UTC (permalink / raw) To: Steffen Prohaska; +Cc: Johannes Sixt, git, Junio C Hamano, Johannes Schindelin Steffen Prohaska <prohaska@zib.de> wrote: > We prefer running the dashless form, so we should use it in MinGW's > start_command(), too. ... > - We have non-builtins that are implemented in C, e.g. fast-import.c. > These non-builtins will still compute wrong paths. This feels wrong to me. fast-import probably won't be adversly impacted by not being able to read /etc/gitconfig, unless the user has set something like core.deltaBaseCacheLimit and is doing an incremental import. But other non-builtins may be impacted. It feels like we're fixing this in the wrong place. If the issue is we don't find our installation directory correctly, we should find our installation directory correctly, not work around it by calling builtins through the git wrapper. Though I can see where it may be a good idea to at some point in the future (git 1.7?) stop creating the redundant builtin links under libexec/git-core. -- Shawn. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) 2008-07-29 5:24 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Shawn O. Pearce @ 2008-07-29 5:42 ` Junio C Hamano 2008-07-29 5:55 ` Steffen Prohaska 2008-07-29 5:51 ` Steffen Prohaska 1 sibling, 1 reply; 10+ messages in thread From: Junio C Hamano @ 2008-07-29 5:42 UTC (permalink / raw) To: Shawn O. Pearce; +Cc: Steffen Prohaska, Johannes Sixt, git, Johannes Schindelin "Shawn O. Pearce" <spearce@spearce.org> writes: > This feels wrong to me. fast-import probably won't be adversly > impacted by not being able to read /etc/gitconfig, unless the user > has set something like core.deltaBaseCacheLimit and is doing an > incremental import. But other non-builtins may be impacted. > > It feels like we're fixing this in the wrong place. If the issue > is we don't find our installation directory correctly, we should > find our installation directory correctly, not work around it by > calling builtins through the git wrapper. > > Though I can see where it may be a good idea to at some point > in the future (git 1.7?) stop creating the redundant builtin > links under libexec/git-core. I agree; that is why I already applied Steffen's original patch with quite a different justification from the updated one: commit b048b9a803f48d88595877271b53bf9ec400e4ba Author: Steffen Prohaska <prohaska@zib.de> Date: Mon Jul 28 07:50:28 2008 +0200 run-command (Windows): Run dashless "git <cmd>" We prefer running the dashless form, and POSIX side already does so; we should use it in MinGW's start_command(), too. Signed-off-by: Steffen Prohaska <prohaska@zib.de> Acked-by: Johannes Sixt <johannes.sixt@telecom.at> Signed-off-by: Junio C Hamano <gitster@pobox.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) 2008-07-29 5:42 ` Junio C Hamano @ 2008-07-29 5:55 ` Steffen Prohaska 2008-07-29 11:13 ` Johannes Schindelin 0 siblings, 1 reply; 10+ messages in thread From: Steffen Prohaska @ 2008-07-29 5:55 UTC (permalink / raw) To: Junio C Hamano; +Cc: Shawn O. Pearce, Johannes Sixt, git, Johannes Schindelin On Jul 29, 2008, at 7:42 AM, Junio C Hamano wrote: > "Shawn O. Pearce" <spearce@spearce.org> writes: > >> This feels wrong to me. fast-import probably won't be adversly >> impacted by not being able to read /etc/gitconfig, unless the user >> has set something like core.deltaBaseCacheLimit and is doing an >> incremental import. But other non-builtins may be impacted. >> >> It feels like we're fixing this in the wrong place. If the issue >> is we don't find our installation directory correctly, we should >> find our installation directory correctly, not work around it by >> calling builtins through the git wrapper. >> >> Though I can see where it may be a good idea to at some point >> in the future (git 1.7?) stop creating the redundant builtin >> links under libexec/git-core. > > I agree; that is why I already applied Steffen's original patch with > quite > a different justification from the updated one: > > commit b048b9a803f48d88595877271b53bf9ec400e4ba > Author: Steffen Prohaska <prohaska@zib.de> > Date: Mon Jul 28 07:50:28 2008 +0200 > > run-command (Windows): Run dashless "git <cmd>" > > We prefer running the dashless form, and POSIX side already does > so; we > should use it in MinGW's start_command(), too. Thanks for reading my mind ;-) This was the alternative justification I had in mind after reading my patch again. Steffen ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) 2008-07-29 5:55 ` Steffen Prohaska @ 2008-07-29 11:13 ` Johannes Schindelin 2008-07-29 11:31 ` Steffen Prohaska 0 siblings, 1 reply; 10+ messages in thread From: Johannes Schindelin @ 2008-07-29 11:13 UTC (permalink / raw) To: Steffen Prohaska; +Cc: Junio C Hamano, Shawn O. Pearce, Johannes Sixt, git Hi, On Tue, 29 Jul 2008, Steffen Prohaska wrote: > On Jul 29, 2008, at 7:42 AM, Junio C Hamano wrote: > > > We prefer running the dashless form, and POSIX side already does so; > > we should use it in MinGW's start_command(), too. > > Thanks for reading my mind ;-) This was the alternative justification I > had in mind after reading my patch again. Well, given that the justification you gave had the obvious flaw -- which you even pointed out -- that non-builtins are _still_ affected, i.e. that you leave that bug unfixed (but your description purports that you want to fix that bug), it would have been wiser to give the alternative justification, which makes the commit obviously correct. Ciao, Dscho ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) 2008-07-29 11:13 ` Johannes Schindelin @ 2008-07-29 11:31 ` Steffen Prohaska 0 siblings, 0 replies; 10+ messages in thread From: Steffen Prohaska @ 2008-07-29 11:31 UTC (permalink / raw) To: Johannes Schindelin; +Cc: Junio C Hamano, Shawn O. Pearce, Johannes Sixt, git On Jul 29, 2008, at 1:13 PM, Johannes Schindelin wrote: > On Tue, 29 Jul 2008, Steffen Prohaska wrote: > >> On Jul 29, 2008, at 7:42 AM, Junio C Hamano wrote: >> >>> We prefer running the dashless form, and POSIX side already does >>> so; >>> we should use it in MinGW's start_command(), too. >> >> Thanks for reading my mind ;-) This was the alternative >> justification I >> had in mind after reading my patch again. > > Well, given that the justification you gave had the obvious flaw -- > which > you even pointed out -- that non-builtins are _still_ affected, i.e. > that > you leave that bug unfixed (but your description purports that you > want to > fix that bug), it would have been wiser to give the alternative > justification, which makes the commit obviously correct. We still need to fix the problem with system_path(), because currently we cannot release Git-1.6.0 on Windows. That is why I pointed out the real problem we are facing. The (good) side-effect is that the MSYS-codepath is now prepared for 1.7. Steffen ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) 2008-07-29 5:24 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Shawn O. Pearce 2008-07-29 5:42 ` Junio C Hamano @ 2008-07-29 5:51 ` Steffen Prohaska 2008-07-29 11:18 ` Johannes Schindelin 1 sibling, 1 reply; 10+ messages in thread From: Steffen Prohaska @ 2008-07-29 5:51 UTC (permalink / raw) To: Shawn O. Pearce, Johannes Sixt Cc: Git Mailing List, Junio C Hamano, Johannes Schindelin On Jul 29, 2008, at 7:24 AM, Shawn O. Pearce wrote: > Steffen Prohaska <prohaska@zib.de> wrote: >> We prefer running the dashless form, so we should use it in MinGW's >> start_command(), too. > ... >> - We have non-builtins that are implemented in C, e.g. fast-import.c. >> These non-builtins will still compute wrong paths. > > This feels wrong to me. fast-import probably won't be adversly > impacted by not being able to read /etc/gitconfig, unless the user > has set something like core.deltaBaseCacheLimit and is doing an > incremental import. But other non-builtins may be impacted. > > It feels like we're fixing this in the wrong place. If the issue > is we don't find our installation directory correctly, we should > find our installation directory correctly, not work around it by > calling builtins through the git wrapper. For builtins it is not a work around but a real solution. The solution however needs to be tested without builtins installed in libexec/git-core. Note that Unix runs builtins using the git wrapper too (see execv_git_cmd), so the patch makes the MinGW port behaving more like the Unix version. My patch however does not solve the problem for non-builtins, so I agree that we are not fixing the real problem. Maybe we could do the following: - Add a switch RELOCATABLE_PREFIX to the Makefile. - If RELOCATABLE_PREFIX is defined, system paths will not be interpreted as is, but a prefix will be computed at runtime. For example, if git is installed in /some/patch/bin/git, then system_path("/etc") will return "/some/path/etc". - As Dscho proposed, system_path() needs to be intelligent enough to find the prefix for executables located either in bindir or in gitexecdir. Adding a switch to the Makefile would make the relocation magic explicit, instead of relying on relative paths. This has also the advantage that we can just use the default paths for gitexecdir, template_dir, ... , instead of overriding them in MINGW section of the Makefile. We only would set RELOCATABLE_PREFIX there. Actually some more work is needed because prefix is used for defining system paths and also for defining the installation directory. Maybe we could add installprefix to explicitly distinguish between the two purposes. Steffen ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) 2008-07-29 5:51 ` Steffen Prohaska @ 2008-07-29 11:18 ` Johannes Schindelin 0 siblings, 0 replies; 10+ messages in thread From: Johannes Schindelin @ 2008-07-29 11:18 UTC (permalink / raw) To: Steffen Prohaska Cc: Shawn O. Pearce, Johannes Sixt, Git Mailing List, Junio C Hamano Hi, On Tue, 29 Jul 2008, Steffen Prohaska wrote: > On Jul 29, 2008, at 7:24 AM, Shawn O. Pearce wrote: > > > Steffen Prohaska <prohaska@zib.de> wrote: > > > We prefer running the dashless form, so we should use it in MinGW's > > > start_command(), too. > > ... > > > - We have non-builtins that are implemented in C, e.g. fast-import.c. > > > These non-builtins will still compute wrong paths. > > > > This feels wrong to me. fast-import probably won't be adversly > > impacted by not being able to read /etc/gitconfig, unless the user has > > set something like core.deltaBaseCacheLimit and is doing an > > incremental import. But other non-builtins may be impacted. > > > > It feels like we're fixing this in the wrong place. If the issue is > > we don't find our installation directory correctly, we should find our > > installation directory correctly, not work around it by calling > > builtins through the git wrapper. > > For builtins it is not a work around but a real solution. No, it is not a real solution. At least not for the goal you stated: getting the correct "toplevel" directory. It is a workaround, because it avoids the builtins being called as proper programs (which they should be perfectly capable of, and which scripts still _are allowed to do_). However, it is a solution. To a totally other problem, namely "I would like to be able _not_ to install the builtins into the exec-path". Sure, you break a few scripts that rely on the builtins being callable in the dash-form, but at least the scripts we ship in git.git are safe. Ciao, Dscho ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Fundamental problem with relative system paths] [PATCH 2/2] run-command (Windows): Run dashless "git <cmd>" @ 2008-07-29 5:15 Steffen Prohaska 2008-07-29 5:19 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Steffen Prohaska 0 siblings, 1 reply; 10+ messages in thread From: Steffen Prohaska @ 2008-07-29 5:15 UTC (permalink / raw) To: Johannes Sixt; +Cc: git, Junio C Hamano, Johannes Schindelin, Shawn O. Pearce On Jul 28, 2008, at 10:37 PM, Johannes Sixt wrote: > Zitat von Steffen Prohaska <prohaska@zib.de>: > >> This might solve a fundamental problem we have with the >> computation of system directories based on relative paths >> in combination with the new gitexecpath 'libexec/git-core'. >> The problem is that the program 'git' is hardlinked to >> directories with different depth. It is either used as >> 'bin/git' (1 directory) or as 'libexec/git-core/git-*' >> (2 directories). Thus, using the same relative path >> in system_path() yields different results when starting from the >> two locations. I recognized the problem because /etc/gitconfig >> is no longer be read. >> >> The patch below might fix the problem by always calling 'bin/git' >> for builtin commands. The computation in system_path() would >> always start from 'bin' and thus yields predictable results. I >> am not sure however if it fully solves the problem because other >> code paths might run the dashed forms directly. > > This paragraph should go into the commit message. I'll send an updated patch including a commit message defending the change more offensively. >> I think the only way to verify correctness would be to stop >> installing the dashed forms for builtins. If they were not >> installed they could not be called. The only entry point for all >> builtins would be 'bin/git'. I don't think we want to stop >> installing the dashed forms right away. >> >> So what shall we do? > > Your patches make a lot of sense. Unfortunately, I am sure that they do not solve the problem fully, even if we removed the dashed forms completely. I'll send a second patch that modifies the Makefile to stop installing the BUILT_INS. It might be useful for debugging. Steffen ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) 2008-07-29 5:15 [Fundamental problem with relative system paths] [PATCH 2/2] run-command (Windows): Run dashless "git <cmd>" Steffen Prohaska @ 2008-07-29 5:19 ` Steffen Prohaska 2008-07-29 5:19 ` [FOR DEBUGGING] Stop installing BUILT_INS Steffen Prohaska 0 siblings, 1 reply; 10+ messages in thread From: Steffen Prohaska @ 2008-07-29 5:19 UTC (permalink / raw) To: Johannes Sixt Cc: git, Junio C Hamano, Johannes Schindelin, Shawn O. Pearce, Steffen Prohaska We prefer running the dashless form, so we should use it in MinGW's start_command(), too. This solves a fundamental problem we have with the computation of system directories based on relative paths in combination with the new gitexecpath 'libexec/git-core'. The problem is that the program 'git' is hardlinked to directories with different depth. It is either used as 'bin/git' (1 directory) or as 'libexec/git-core/git-*' (2 directories). Thus, using the same relative path in system_path() yields different results when starting from the two locations. I recognized the problem because /etc/gitconfig is no longer read. This commit fixes the problem by always calling 'bin/git' for builtin commands. The computation in system_path() thus always starts from 'bin' and yields predictable results. This is however only part of a full solution to the problem outlined above. Remaining problems are: - Other code paths might run the dashed forms directly. - We have non-builtins that are implemented in C, e.g. fast-import.c. These non-builtins will still compute wrong paths. Signed-off-by: Steffen Prohaska <prohaska@zib.de> Acked-by: Johannes Sixt <johannes.sixt@telecom.at> --- run-command.c | 11 ++++------- 1 files changed, 4 insertions(+), 7 deletions(-) My previous mail was in the wrong thread. Apologies. This one will be correctly threaded. Steffen diff --git a/run-command.c b/run-command.c index 6e29fdf..a3b28a6 100644 --- a/run-command.c +++ b/run-command.c @@ -119,9 +119,8 @@ int start_command(struct child_process *cmd) } #else int s0 = -1, s1 = -1, s2 = -1; /* backups of stdin, stdout, stderr */ - const char *sargv0 = cmd->argv[0]; + const char **sargv = cmd->argv; char **env = environ; - struct strbuf git_cmd; if (cmd->no_stdin) { s0 = dup(0); @@ -165,9 +164,7 @@ int start_command(struct child_process *cmd) } if (cmd->git_cmd) { - strbuf_init(&git_cmd, 0); - strbuf_addf(&git_cmd, "git-%s", cmd->argv[0]); - cmd->argv[0] = git_cmd.buf; + cmd->argv = prepare_git_cmd(cmd->argv); } cmd->pid = mingw_spawnvpe(cmd->argv[0], cmd->argv, env); @@ -175,9 +172,9 @@ int start_command(struct child_process *cmd) if (cmd->env) free_environ(env); if (cmd->git_cmd) - strbuf_release(&git_cmd); + free(cmd->argv); - cmd->argv[0] = sargv0; + cmd->argv = sargv; if (s0 >= 0) dup2(s0, 0), close(s0); if (s1 >= 0) -- 1.6.0.rc0.79.gb0320 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [FOR DEBUGGING] Stop installing BUILT_INS 2008-07-29 5:19 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Steffen Prohaska @ 2008-07-29 5:19 ` Steffen Prohaska 0 siblings, 0 replies; 10+ messages in thread From: Steffen Prohaska @ 2008-07-29 5:19 UTC (permalink / raw) To: Johannes Sixt Cc: git, Junio C Hamano, Johannes Schindelin, Shawn O. Pearce, Steffen Prohaska --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index b2bc0ef..e416ec7 100644 --- a/Makefile +++ b/Makefile @@ -1366,7 +1366,7 @@ endif ln -f "$$bindir/git$X" "$$execdir/git$X" || \ cp "$$bindir/git$X" "$$execdir/git$X"; \ fi && \ - { $(foreach p,$(BUILT_INS), $(RM) "$$execdir/$p" && ln "$$execdir/git$X" "$$execdir/$p" ;) } && \ + { $(foreach p,$(BUILT_INS), $(RM) "$$execdir/$p" ;) } && \ $(RM) "$$execdir/git$X" && \ ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X" -- 1.6.0.rc0.79.gb0320 ^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2008-07-29 11:34 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <BF5B7CBE-ACA8-4D81-8FC0-8A7901205854@zib.de> 2008-07-29 5:17 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Steffen Prohaska 2008-07-29 5:17 ` [FOR DEBUGGING] Stop installing BUILT_INS Steffen Prohaska 2008-07-29 5:24 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Shawn O. Pearce 2008-07-29 5:42 ` Junio C Hamano 2008-07-29 5:55 ` Steffen Prohaska 2008-07-29 11:13 ` Johannes Schindelin 2008-07-29 11:31 ` Steffen Prohaska 2008-07-29 5:51 ` Steffen Prohaska 2008-07-29 11:18 ` Johannes Schindelin 2008-07-29 5:15 [Fundamental problem with relative system paths] [PATCH 2/2] run-command (Windows): Run dashless "git <cmd>" Steffen Prohaska 2008-07-29 5:19 ` [PATCH 2/2 v2] run-command (Windows): Run dashless "git <cmd>" (solves part of problem with system_path) Steffen Prohaska 2008-07-29 5:19 ` [FOR DEBUGGING] Stop installing BUILT_INS Steffen Prohaska
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).