Skip to content

Instantly share code, notes, and snippets.

@jraregris
Created September 21, 2012 09:29
Show Gist options
  • Save jraregris/3760577 to your computer and use it in GitHub Desktop.
Save jraregris/3760577 to your computer and use it in GitHub Desktop.
Git-BASH (mingw32) with Visual Studio enviroment
@echo off
@REM Select the latest VS Tools
IF EXIST %VS110COMNTOOLS% (
CALL "%VS110COMNTOOLS%\vsvars32.bat"
GOTO :start_term
)
IF EXIST %VS100COMNTOOLS% (
CALL "%VS100COMNTOOLS%\vsvars32.bat"
GOTO :start_term
)
:start_term
C:
chdir "C:\Program Files (x86)\Git\bin\"
START sh.exe --login -i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment