1.配置用戶名
git config --global user.name "simon" # 請把simon替換成本身用戶名
2.配置郵箱
git config --global user.name "simon_asd@163.com" # 請把simon_asd@163.com替換成本身郵箱
3.換行符轉換
git config --global core.autocrlf false
4.編碼配置
git config --global gui.encoding utf-8 git config --global core.quotepath off # windows上還須要配置: git config --global core.ignorecase false
cd ~ ssh-keygen -t rsa -C "aasdas@163.com" # 你的郵箱 # 回車三次
# 查看公鑰 cat ~/.ssh/id_rsa.pub
複製該內容丟到你的GitHub配置或者碼雲上去