git:通过命令行配置 Git 使用
Posted it_xiangqiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git:通过命令行配置 Git 使用相关的知识,希望对你有一定的参考价值。
通过命令行配置 Git 使用
要使用 Git,您必须配置您的用户名和电子邮件。
通过以下命令为 Git 配置用户和电子邮件。
# configure the user which will be used by Git
# this should be not
git config --global user.name "Firstname Lastname"
# configure the email address
git config --global user.email "your.email@example.org"
另一个 commmon 设置是将 Git 配置为在拉取操作期间使用衍合。
# configure new branches to use fetch and
git config --global branch.autosetuprebase always
# always use fetch and
git config --global pull.rebase true
如果您此时不知道什么是衍合操作或拉取操作,则可以省略这些设置,以后仍然可以更改这些设置。此说明假定您设置了它们。
以上是关于git:通过命令行配置 Git 使用的主要内容,如果未能解决你的问题,请参考以下文章