From 38fea636fc7214073d7f873b9e47cbc566374e71 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Mon, 2 Jan 2023 12:08:33 +0100 Subject: [PATCH] docs --- README.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 236f9a8..cb47d24 100644 --- a/README.md +++ b/README.md @@ -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 ..