我正在尝试使用 Windows 终端的命令行参数在 Git Bash 中启动 2 个应用程序(MERN 堆栈应用程序的客户端和服务器)。下面是我的命令
wt -M; new-tab -p "Git Bash" -d D:\ws\user-management\server cmd /k "npm run dev" ; split-pane -p "Git Bash" -H -d D:\ws\user-management\client cmd /k "npm run dev"
但是这会在 Windows cmd 中启动应用程序,而不是像我给出的那样在 bash 中启动cmd /k
。如果我将上述命令更改为wt -M; new-tab -p "Git Bash" -d D:\ws\user-management\server npm run dev
,它会抛出此错误
[启动“npm run dev”时出现错误 0x80070002]
npm run dev
如何从 git bash 本身而不是 cmd运行我的