Skip to content

Commit 67cb2f4

Browse files
committed
Merge pull request #2506 from dscho/issue-2283
Allow running Git directly from `C:\Program Files\Git\mingw64\bin\git.exe`
2 parents b85d7da + 194d20a commit 67cb2f4

File tree

4 files changed

+117
-2
lines changed

4 files changed

+117
-2
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2728,6 +2728,11 @@ ifdef GIT_INTEROP_MAKE_OPTS
27282728
endif
27292729
ifdef GIT_TEST_INDEX_VERSION
27302730
@echo GIT_TEST_INDEX_VERSION=\''$(subst ','\'',$(subst ','\'',$(GIT_TEST_INDEX_VERSION)))'\' >>$@+
2731+
endif
2732+
ifdef RUNTIME_PREFIX
2733+
@echo RUNTIME_PREFIX=\'true\' >>$@+
2734+
else
2735+
@echo RUNTIME_PREFIX=\'false\' >>$@+
27312736
endif
27322737
@if cmp $@+ $@ >/dev/null 2>&1; then $(RM) $@+; else mv $@+ $@; fi
27332738

compat/mingw.c

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2772,6 +2772,47 @@ int xwcstoutf(char *utf, const wchar_t *wcs, size_t utflen)
27722772
return -1;
27732773
}
27742774

2775+
#ifdef ENSURE_MSYSTEM_IS_SET
2776+
static size_t append_system_bin_dirs(char *path, size_t size)
2777+
{
2778+
#if !defined(RUNTIME_PREFIX) || !defined(HAVE_WPGMPTR)
2779+
return 0;
2780+
#else
2781+
char prefix[32768];
2782+
const char *slash;
2783+
size_t len = xwcstoutf(prefix, _wpgmptr, sizeof(prefix)), off = 0;
2784+
2785+
if (len == 0 || len >= sizeof(prefix) ||
2786+
!(slash = find_last_dir_sep(prefix)))
2787+
return 0;
2788+
/* strip trailing `git.exe` */
2789+
len = slash - prefix;
2790+
2791+
/* strip trailing `cmd` or `mingw64\bin` or `mingw32\bin` or `bin` or `libexec\git-core` */
2792+
if (strip_suffix_mem(prefix, &len, "\\mingw64\\libexec\\git-core") ||
2793+
strip_suffix_mem(prefix, &len, "\\mingw64\\bin"))
2794+
off += xsnprintf(path + off, size - off,
2795+
"%.*s\\mingw64\\bin;", (int)len, prefix);
2796+
else if (strip_suffix_mem(prefix, &len, "\\mingw32\\libexec\\git-core") ||
2797+
strip_suffix_mem(prefix, &len, "\\mingw32\\bin"))
2798+
off += xsnprintf(path + off, size - off,
2799+
"%.*s\\mingw32\\bin;", (int)len, prefix);
2800+
else if (strip_suffix_mem(prefix, &len, "\\cmd") ||
2801+
strip_suffix_mem(prefix, &len, "\\bin") ||
2802+
strip_suffix_mem(prefix, &len, "\\libexec\\git-core"))
2803+
off += xsnprintf(path + off, size - off,
2804+
"%.*s\\mingw%d\\bin;", (int)len, prefix,
2805+
(int)(sizeof(void *) * 8));
2806+
else
2807+
return 0;
2808+
2809+
off += xsnprintf(path + off, size - off,
2810+
"%.*s\\usr\\bin;", (int)len, prefix);
2811+
return off;
2812+
#endif
2813+
}
2814+
#endif
2815+
27752816
static void setup_windows_environment(void)
27762817
{
27772818
char *tmp = getenv("TMPDIR");
@@ -2823,6 +2864,37 @@ static void setup_windows_environment(void)
28232864
if (!tmp && (tmp = getenv("USERPROFILE")))
28242865
setenv("HOME", tmp, 1);
28252866
}
2867+
2868+
if (!getenv("PLINK_PROTOCOL"))
2869+
setenv("PLINK_PROTOCOL", "ssh", 0);
2870+
2871+
#ifdef ENSURE_MSYSTEM_IS_SET
2872+
if (!(tmp = getenv("MSYSTEM")) || !tmp[0]) {
2873+
const char *home = getenv("HOME"), *path = getenv("PATH");
2874+
char buf[32768];
2875+
size_t off = 0;
2876+
2877+
xsnprintf(buf, sizeof(buf),
2878+
"MINGW%d", (int)(sizeof(void *) * 8));
2879+
setenv("MSYSTEM", buf, 1);
2880+
2881+
if (home)
2882+
off += xsnprintf(buf + off, sizeof(buf) - off,
2883+
"%s\\bin;", home);
2884+
off += append_system_bin_dirs(buf + off, sizeof(buf) - off);
2885+
if (path)
2886+
off += xsnprintf(buf + off, sizeof(buf) - off,
2887+
"%s", path);
2888+
else if (off > 0)
2889+
buf[off - 1] = '\0';
2890+
else
2891+
buf[0] = '\0';
2892+
setenv("PATH", buf, 1);
2893+
}
2894+
#endif
2895+
2896+
if (!getenv("LC_ALL") && !getenv("LC_CTYPE") && !getenv("LANG"))
2897+
setenv("LC_CTYPE", "C.UTF-8", 1);
28262898
}
28272899

28282900
int is_valid_win32_path(const char *path, int allow_literal_nul)

config.mak.uname

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ endif
448448
compat/win32/pthread.o compat/win32/syslog.o \
449449
compat/win32/trace2_win32_process_info.o \
450450
compat/win32/dirent.o
451-
COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DDETECT_MSYS_TTY -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
451+
COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DDETECT_MSYS_TTY -DENSURE_MSYSTEM_IS_SET -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
452452
BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -ENTRY:wmainCRTStartup -SUBSYSTEM:CONSOLE
453453
# invalidcontinue.obj allows Git's source code to close the same file
454454
# handle twice, or to access the osfhandle of an already-closed stdout
@@ -671,7 +671,7 @@ else
671671
endif
672672
CC = gcc
673673
COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY \
674-
-fstack-protector-strong
674+
-DENSURE_MSYSTEM_IS_SET -fstack-protector-strong
675675
EXTLIBS += -lntdll
676676
INSTALL = /bin/install
677677
NO_R_TO_GCC_LINKER = YesPlease

t/t0060-path-utils.sh

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,4 +495,42 @@ test_expect_success MINGW 'is_valid_path() on Windows' '
495495
"PRN./abc"
496496
'
497497

498+
test_expect_success MINGW 'MSYSTEM/PATH is adjusted if necessary' '
499+
mkdir -p "$HOME"/bin pretend/mingw64/bin \
500+
pretend/mingw64/libexec/git-core pretend/usr/bin &&
501+
cp "$GIT_EXEC_PATH"/git.exe pretend/mingw64/bin/ &&
502+
cp "$GIT_EXEC_PATH"/git.exe pretend/mingw64/libexec/git-core/ &&
503+
echo "env | grep MSYSTEM=" | write_script "$HOME"/bin/git-test-home &&
504+
echo "echo mingw64" | write_script pretend/mingw64/bin/git-test-bin &&
505+
echo "echo usr" | write_script pretend/usr/bin/git-test-bin2 &&
506+
507+
(
508+
MSYSTEM= &&
509+
GIT_EXEC_PATH= &&
510+
pretend/mingw64/libexec/git-core/git.exe test-home >actual &&
511+
pretend/mingw64/libexec/git-core/git.exe test-bin >>actual &&
512+
pretend/mingw64/bin/git.exe test-bin2 >>actual
513+
) &&
514+
test_write_lines MSYSTEM=$MSYSTEM mingw64 usr >expect &&
515+
test_cmp expect actual
516+
'
517+
518+
test_lazy_prereq RUNTIME_PREFIX '
519+
test true = "$RUNTIME_PREFIX"
520+
'
521+
522+
test_lazy_prereq CAN_EXEC_IN_PWD '
523+
cp "$GIT_EXEC_PATH"/git$X ./ &&
524+
./git rev-parse
525+
'
526+
527+
test_expect_success RUNTIME_PREFIX,CAN_EXEC_IN_PWD 'RUNTIME_PREFIX works' '
528+
mkdir -p pretend/git pretend/libexec/git-core &&
529+
echo "echo HERE" | write_script pretend/libexec/git-core/git-here &&
530+
cp "$GIT_EXEC_PATH"/git$X pretend/git/ &&
531+
GIT_EXEC_PATH= ./pretend/git/git here >actual &&
532+
echo HERE >expect &&
533+
test_cmp expect actual
534+
'
535+
498536
test_done

0 commit comments

Comments
 (0)