I\'m on Windows 7 trying to use a batch file to open the GitBash shell and make a git call. This is the contents of my batch file:
REM Open GitBash C:\\Wind
You can also run a shell script to run multiple commands
#! /bin/bash cd /c/GitRepo/PythonScripts git status read -p "Press enter to continue"
then call that from your cmd line:
"c:\Program Files (x86)\Git\bin\sh.exe" --login -i -c "/c/GitRepo/PythonScripts/statusandwait.sh"