Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge branch 'main' of https://github.com/git-for-windows/git-sdk-64 #95

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions setup-git-sdk.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
@REM Set up the Git SDK

@REM determine root directory

@REM https://technet.microsoft.com/en-us/library/bb490909.aspx says:
@REM <percent>~dpI Expands <percent>I to a drive letter and path only.
@REM <percent>~fI Expands <percent>I to a fully qualified path name.
@FOR /F "delims=" %%D in ("%~dp0") do @set cwd=%%~fD

@CD "%cwd%"
@IF ERRORLEVEL 1 GOTO DIE

@REM set PATH
@set PATH=%cwd%\mini\mingw64\bin;%PATH%

@ECHO Cloning the Git for Windows SDK...
@git init
@IF ERRORLEVEL 1 GOTO DIE
@git config http.sslbackend schannel
@IF ERRORLEVEL 1 GOTO DIE
@git remote add origin https://github.com/git-for-windows/git-sdk-64
@IF ERRORLEVEL 1 GOTO DIE
@git fetch --depth 1 origin
@IF ERRORLEVEL 1 GOTO DIE
@git -c core.fscache=true checkout -t origin/main
@IF ERRORLEVEL 1 GOTO DIE

@REM Cleaning up temporary git.exe
@RMDIR /Q /S mini
@IF ERRORLEVEL 1 GOTO DIE

@REM Avoid overlapping address ranges
@IF 32 == 64 @(
ECHO Auto-rebasing .dll files
CALL autorebase.bat
)

@REM Before running a shell, let's prevent complaints about "permission denied"
@REM from MSYS2's /etc/post-install/01-devices.post
@MKDIR dev\shm 2> NUL
@MKDIR dev\mqueue 2> NUL

@START /B git-bash.exe
@EXIT /B 0

:DIE
@ECHO Installation of Git for Windows' SDK failed!
@PAUSE
@EXIT /B 1

Loading