最早Git是在Linux上开发的,但是现在,Git可以在Linux、Unix、Mac和Windows正常运行。
sudo apt-get install git
一是安装homebrew,然后通过homebrew安装Git
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装Git
brew install git
这个大多数人最熟悉了,跟其他软件一样,图形化安装界面,直接下载安装就好了:https://git-scm.com/downloads
安装完成后,还需要最后一步设置,来配置用户信息,在命令行输入:
git config --global user.name "Your Name"
git config --global user.email "email@example.com"
其中 Your Name
改成 你的名字 ,email@example.com
改成你的邮箱,这样,在提交内容之后,版本日志里就知道是谁提交的了,有问题也可以通过邮箱联系你。