Git 别名打开 git 安装文件夹

Git alias to open the git installation folder

我想创建一个git别名git dir,使用时应该通过Windows资源管理器打开git安装文件夹,如何实现这样的别名?

以 ! 开始别名将其视为命令。

我手边没有 windows 机器,但是 Linux:

git config --global alias.open '!git --exec-path | xargs xdg-open'

按照说明工作。

因此您要查找的命令可能类似于:

git config --global alias.open "!git --exec-path | 'sed s~/~\~g' | xargs explorer"

如果使用 Git Bash,请尝试:

git config --global alias.dir '!start "" "$(git --exec-path)"'

参考:Can I use the "start" command with spaces in the path?