作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在运行 mac osx lion。
我的问题是 git 在我输入每个命令后挂起。
如果我输入 git
然后我得到Usage: git credential-osxkeychain <get|store|erase>
当我尝试输入其他内容时,例如 git status
终端只是挂起,但是一旦我再次按下回车键,它就会回到正常的终端提示符,但命令永远不会通过。
如何让 git 工作?
最佳答案
根据您安装 git 的具体方法,您可能需要遵循以下说明: https://help.github.com/articles/set-up-git
# Test for the cred helper
git credential-osxkeychain
# Download the helper
curl -s -O \
http://github-media-downloads.s3.amazonaws.com/osx/git-credential-osxkeychain
# Fix the permissions on the file so it can be run
chmod u+x git-credential-osxkeychain
# Now you need to install the helper into the
# same directory where Git itself is installed.
# Find where git is installed
which git
# Move the file to the path `which git` returned so git can access it
sudo mv git-credential-osxkeychain /usr/local/git/bin/
# Set git to use the osxkeychain credential helper
git config --global credential.helper osxkeychain
就我个人而言,我只使用 homebrew
就像 brew install git
关于OSX 上的 Git 在每个命令 : How to fix it? 上挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13831165/
我是一名优秀的程序员,十分优秀!