This commit is contained in:
Michael H.G. Schmidt 2023-01-02 12:08:33 +01:00
parent 29de494506
commit 38fea636fc

View File

@ -134,15 +134,6 @@ cd ..
Download latest 64bit exe file from: https://github.com/git-for-windows/git/releases and save it in your "Downloads" folder.
Execute:
```dos
cd /D %USERPROFILE%\Downloads
move /Y Git-*64-bit.exe git-setup.exe
git-setup.exe
cd ..
```
Create the GIT configfile for the setup program (use notepad):
```text
[Setup]
@ -169,11 +160,12 @@ EnableSymlinks=Disabled
EnablePseudoConsoleSupport=Disabled
```
Save it as c:\temp\install-git.txt
**Save it** as c:\temp\install-git.txt
Execute the Git setup:
```dos
cd /D %USERPROFILE%\Downloads
move /Y Git-*64-bit.exe git-setup.exe
git-setup.exe /LOADINF=c:\temp\install-git.txt /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
cd ..