Created
January 10, 2024 17:44
-
-
Save ngbrown/482f239b59ad7eeac10159b6863003bc to your computer and use it in GitHub Desktop.
Revisions
-
ngbrown created this gist
Jan 10, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ To download Git with PowerShell: Get most recent version URL from https://git-scm.com/download/win ```ps1 cd "${env:USERPROFILE}\Downloads" [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $ProgressPreference = 'SilentlyContinue';Invoke-WebRequest -Uri https://github.com/git-for-windows/git/releases/download/v2.43.0.windows.1/Git-2.43.0-64-bit.exe -OutFile Git-2.43.0-64-bit.exe ```