Git 无法在我的 Mac OS X 上运行

Git 无法在我的 Mac OS X 上运行

我从下载并安装了 Githttp://code.google.com/p/git-osx-installer/
安装后我无法使用我的 Git 安装。

thomas-macbook-:test zozo$ git init
-bash: git: command not found

怎么了?

答案1

您需要将 /usr/local/git/bin/ 添加到您的 PATH,例如通过添加到 .profile

export PATH=/usr/local/git/bin/:$PATH

相关内容