git安装配置


1、下载地址:
http://git-scm.com/download/win
另一个简单的方法是安装 GitHub for Windows
网址为:http://windows.github.com

2、git初次安装配置
1)、 /etc/gitconfig 包含系统上每一个用户及他们仓库的通用配置
2)、 ~/.gitconfig 或 ~/.config/git/config 只针对当前用户。 可以传递 --global 选项让 Git读写此文件
3)、当前使用仓库的 Git 目录中的 config 文件(就是 .git/config):针对该仓库

3、配置用户信息
$ git config --global user.name "yifan"
$ git config --global user.email 18735097146@139.com

--global命令配置的信息为全局性---后续系统任何操作均会使用该信息
当你想针对特定项目使用不同的用户名称与邮件地址时,可以在那个项目目录下运
行没有 --global 选项的命令来配置

4、配置默认编译器
$ git config --global core.editor “编译器路径 .exe”

5、检查配置信息
git config --list命令

6、获取帮助信息:git help <verd>

posted @ 2019-03-25 16:27  白羊爱卿  阅读(89)  评论(0编辑  收藏  举报