I am really new to batch file scripting, I managed to clone the repo I wanted (I think) but I am not sure how to set the save directory. I already saw this SO post How do I execute several git commands in a batch file without terminating after the first command? but I'm afraid that didn't answer my question. Here is what I have so far:
pullrepo.bat:
start "" "C:\Program Files (x86)\Git\bin\git.exe" clone git@bitbucket.org:BLAHBLAHBLAH.git
pause
When I look at the bat script (and the git window) that shows up everything seems to work, but I cannot find the folder for the local copy of the repo (by searching for folder name), much less set the local save location as I would like to. Eventually my goal is to also add a push function that prompts the user for a commit message inside one of the windows (git or bat)