我想编写一个同时运行 Unity、Visual Studio 和 git shell 的 bat 脚本。我想让 git shell 更改目录(它总是从默认的 github 存储库位置开始),但我不知道如何。
到目前为止,我有类似的东西:
echo off
d:
cd D:\<path>\Visual Studio\Common7\IDE
start .\devenv.exe "C:\<path>\solution.sln"
cd D:\<path>\Unity\Editor
start .\Unity.exe -projectPath "C:\<path>\project directory"
c:
cd C:\Users\<username>\AppData\Local\GitHub\
start .\GitHub.appref-ms --open-shell //and now i need to execute "cd ../my project" on it