我有PyCharm,我正在寻找git.exe来设置它与我的repo。

git.exe的路径是什么?


当前回答

如果你已经安装了基于powershell的git,你可以使用Get-Command对象来查找git:

Get-Command git.exe | Select-Object -ExpandProperty Definition

其他回答

如果你安装了msysgit,在64位系统上的路径看起来像c:\Program Files (x86)\Git\bin\git.exe,否则就下载并安装它,PyCharm不附带Git客户端。

如果你可以使用git命令,它应该在你的路径? 因此,这应该工作假设Linux或Linux类似的操作系统

which git

其他也假设Linux类似的操作系统

cd /
find . -name "*git*"

如果在windows上,告诉我你用的是什么版本,我会帮助你。windows默认路径为 C:\Program Files (x86)\Git.

可执行文件的名称不是git。Exeon所有系统。

我在

C:\Users\~\AppData\Local\GitHub\PortableGit_<some_identifier>\mingw32\libexec\git-core\

对于那些找不到其他解决方案的人,

我今天刚刚下载了最新的版本,git.exe位于

C:\Users\<user>\AppData\Local\GitHubDesktop\app-1.0.10\resources\app\git\cmd

我正在使用GitHub Desktop 1.0.13,我想将git.exe添加到我的Intellij环境中。 我在C:\Users\Adam\AppData\Local\GitHubDesktop\app-1.0.13\resources\app\git\mingw64\bin\git.exe中找到了它