我通过本教程启用了 shellhttps://www.windowscentral.com/how-install-bash-shell-command-line-windows-10
但是,如果我有一个名为项目根目录中的 shell 脚本ca.sh
,我仍然无法在项目根目录中运行,./ca.sh
并且会出错
'.' is not recognized as an internal or external command
我可以做些什么来在 ConEmu 内启用 shell 模式?
./ca.sh 内容:
#!/bin/sh
echo "Commit all with message: $1"
git status
git add *
git commit -m "chore(): $1"
git push origin master
我最初在 MacOS 上编写了一些类似的东西,并且运行良好。