Github的初始设置
Posted zhichun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Github的初始设置相关的知识,希望对你有一定的参考价值。
设置姓名和邮箱地址
git config --global user.name "Firstname Lastname"
git config --global user.email "your_email@example.com"
这个命令,会在"~/.gitconfig"中以如下形式输出设置文件
[user]
name=Firstname Lastname
email=your_email@example.com
提高命令输出的可读性
git config --global color.ui auto
这样一来,各种命令的输出会变得更容易分辨:
[color]
ui=auto
以上是关于Github的初始设置的主要内容,如果未能解决你的问题,请参考以下文章
GitHub入门与实践——初始设置Git,以及在GitHub中添加公开密钥