标签:mac下git安装步骤
1.Git下载链接http://git-scm.com/downloads
2.下载后得到git-2.10.0-intel-universal-mavericks.dmg 双击打开后,双击apk开始安装
3.终端查看git安装版本 git --version
4.创建一个全球用户名
git config --global user.name "FIRST_NAME LAST_NAME"
5.创建一个全球邮箱
git config --global user.email "MY_NAME@example.com"
6. 如果不想每次连接远程仓库都输入密码的话,输入如下命令
git credential-osxkeychain
------>等待
git config --global credential.helper osxkeychain
# Set git to use the osxkeychain credential helper
7.到此Git就安装完成了。
标签:mac下git安装步骤
原文地址:http://4952344.blog.51cto.com/4942344/1956487