git 基础知识(一)

(一)查看配置信息

git config --list

(二)配置用户信息

git config --global user.name "your name"

git config --global user.email [email protected]

(三)生成公钥和私钥

ssh-keygen -t rsa -C user.email

cat ~/.ssh/id_rsa.pub

将公钥粘贴在内源网站,setting--SSH Key--设置 title -- Add Key

你可能感兴趣的:(git 基础知识(一))