git
git config --global user.name "username"
設(shè)置用戶名
git config --global --replace-all user.name "用戶名"
修改用戶名
git config --global user.email "email"
設(shè)置郵箱
git config --global --replace-all user.email "修改郵箱"
修改郵箱
git config --global --replace-all user.password "修改密碼"
修改密碼
git config user.name
查看用戶名
git config user.email
查看郵箱
git config user.password
查看密碼
用戶名:提交代碼的用戶名,相當(dāng)于作者名
git config --global user.name "xxx"
郵箱:郵箱賬號
git config --global user.email "xxx@xxx.com"
查看配置是否成功
git config --list
cd ~/.ssh
cat 后綴為.pub的文件
出現(xiàn)“No such file or directory”,則表示需要創(chuàng)建一個ssh keys
沒有生成過秘鑰和公鑰,就要生成ssh密鑰
ssh-keygen -t rsa -C "youremail@example.com" 三個回車后,生成id_rsa和id_rsa.pub
有密鑰焦履,重新生成后會報錯,不能夠更新
ssh-keygen -t rsa -C "your.email@example.com" -b 4096
cat ~/.ssh/id_rsa.pub