[Git] Git 的安装及配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Git] Git 的安装及配置相关的知识,希望对你有一定的参考价值。
1. Ubuntu 下安装 git
sudo apt-get install git
2. 配置邮箱和用户名
git config --global user.name mz8023yt git config --global user.email [email protected]163.com
3. 配置命令别名
git config --global alias.st status git config --global alias.lg "log --color --graph --pretty=format:‘%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset‘ --abbrev-commit"
4. 生成 ssh 秘钥对
ssh-keygen -t rsa -C [email protected]163.com
5. 将 shh 公钥添加到代码托管平台
cat ~/.ssh/id_rsa.pub
登录 github、coding、oschina,添加 shh 公钥。将 cat 打印出来的 id_rsa.pub 公钥添加到托管平台账户中。
以上是关于[Git] Git 的安装及配置的主要内容,如果未能解决你的问题,请参考以下文章