码迷,mamicode.com
首页 > 其他好文 > 详细

Git 安装与配置

时间:2014-10-22 14:30:21      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   sp   文件   div   

安装 Git (installing Git)

  1. git-scm.com 获取 Git

    bubuko.com,布布扣

  2. 运行 Git 安装程序,按提示完成安装
  3. 检查安装
    git --version && which git

 

配置 Git (configuring Git)

Git 存放配置的三个(层级)位置

  • system —— /etc/gitconfig
  • global —— ~/.gitconfig
  • local —— project/.git/config

两个必须设置的全局变量

全局变量“user.name”和“user.email”:

git config --global user.name "用户名"
git config --global user.email "邮箱"

查看这两个配置

git config --global --list
# 也可以直接查看配置文件,如下:
cd ~ && cat .gitconfig

再添加一个输出着色

git config --global color.ui true

 

查看 Git 内置帮助信息(accessing Git‘s built-in help)

git help <command>
# 如:git help git-clone

 

参考与资源

Git 安装与配置

标签:style   blog   http   color   io   ar   sp   文件   div   

原文地址:http://www.cnblogs.com/QCCQ/p/up-and-runnning-with-Git.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!