我尝试将PowerShell
设置为我的" Open Git-Shell
"选项没有成功。在命令字段中,我设置了以下选项:
命令:
powershell.exe
参数:
-noexit -executionpolicy Unrestricted -command "cd '${filePath}'"
这将以非交互模式启动PowerShell(即:该过程在任务管理器中运行,但UI不可见)。我做错了什么?
答案 0 :(得分:2)
我使用cmd.exe
在PowerShell
中为“Open Git-Shell
”调用SmartGit
。我能够通过以下方式获得所需的结果:
<强>命令:强>
cmd.exe
<强>参数:强>
/c start powershell.exe -noexit -executionpolicy Unrestricted -command "cd '${filePath}'"