You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
475 B
Batchfile
11 lines
475 B
Batchfile
@echo off
|
|
setlocal
|
|
if not defined EDITOR set EDITOR=notepad
|
|
:: Exclude the current directory when searching for executables.
|
|
:: This is required for the SSO helper to run, which is written in Go.
|
|
:: Without this set, the SSO helper may throw an error when resolving
|
|
:: the `git` command (see https://pkg.go.dev/os/exec for more details).
|
|
set "NoDefaultCurrentDirectoryInExePath=1"
|
|
set "PATH=${GIT_BIN_ABSDIR}\cmd;%~dp0;%PATH%"
|
|
"${GIT_BIN_ABSDIR}\${GIT_PROGRAM}" %*
|