标签:pre 输入 在服务器 class 版本控制 cat git proxy 控制
git config --global user.name "username"
git config --global user.email "youremail"
ssh-keygen -t rsa -C "youremail"
一直回车就行,不需要输入任何内容。
Settings
。选择左边SSH Keys
,在服务器上执行cat ~/.ssh/id_rsa.pub
,将内容添加到Key对话框,Title随意,点击Add key
。git config --global alias.co checkout
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.br branch
git config --global alias.hist ‘log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short‘
git config --global alias.type ‘cat-file -t‘
git config --global alias.dump ‘cat-file -p‘ Linux 用户home 目录下配置
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global http.proxy ‘socks5://127.0.0.1:1080‘
git config --global https.proxy ‘socks5://127.0.0.1:1080‘
git config --global --unset http.proxy
git config --global --unset https.proxy
标签:pre 输入 在服务器 class 版本控制 cat git proxy 控制
原文地址:https://www.cnblogs.com/R0124/p/12862410.html