一、Git安装
Linux
1 $ apt-get install libcurl4-gnutls-dev libexpat1-dev gettext 2 libz-dev libssl-dev 3 4 $ apt-get install git-core
Windows
安装包传送门:http://msysgit.github.io/
MAC
http://sourceforge.net/projects/git-osx-installer/
二、Git配置
Git提供 Git config 来配置Git
Windows中Git会查看用户主目录中 C:\Documents and Settings\$USER 下的隐藏文件夹 .gitconfig
配置账户:
$ git config --global user.name "Your Name" $ git config --global user.email "[email protected]"
时间: 2024-10-28 15:23:09