1 Linux
- 先检查系统是否有安装git,直接输入git:
$ git
- 如果提示未安装,则输入下面这个命令:
$ sudo apt-get install git
然后等待安装完毕即可。
2 windows
- 没安装的直接到官网下载安装,没啥特殊要求,一路默认即可。
- 然后在开始菜单找到Git->Git bash。
3 全局配置用户名与Email
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
- config --global表示对本机进行全局的配置创建的仓库都将默认使用这个用户名与Email。
- 需要单独给某个仓库命名时,把--global去掉就行。
$ git config user.name "Your Name"
$ git config user.email "email@example.com"
4查看当前所有配置
$ git config -l
网友评论