[Git] Git 的安裝及配置
阿新 • • 發佈:2017-10-29
class span odi commit ret 打印 cat apt-get gre
1. Ubuntu 下安裝 git
sudo apt-get install git
2. 配置郵箱和用戶名
git config --global user.name mz8023yt git config --global user.email ma8023yt@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 mz8023yt@163.com
5. 將 shh 公鑰添加到代碼托管平臺
cat ~/.ssh/id_rsa.pub
登錄 github、coding、oschina,添加 shh 公鑰。將 cat 打印出來的 id_rsa.pub 公鑰添加到托管平臺賬戶中。
[Git] Git 的安裝及配置