Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望 Git bash 通过编写 .exe 文件来执行 .exe 文件git filename.exe。事实上,我有 cloc.exe 文件(它计算代码行数),我想从 Git Bash 而不是 Windows CMD 运行它。
git filename.exe
为此,您的可执行文件必须是:
$PATH
~/.bashrc
git-cloc.exe
然后,您将能够在 git bash 会话中输入(或者甚至在 CMD 中,如果是 的一部分%PATH%):
%PATH%
git cloc
这个想法是:任何可执行文件名称都git-xxx允许您键入git xxx(只要它在 中找到$PATH)
git-xxx
git xxx