修改远程仓库
修改命令:
git remote set-url origin [url]
先删后加
git remote rm origin
git remote add origin [url]
查看修改用户名
git config user.name
git config user.email
git config --global user.name "your name"
git config --global user.email "your email"
or
vim ~/.gitconfig
使用SSH
检查本地:
ls -al ~/.ssh
生成新的ssh key:
ssh-keygen -t rsa -C "your_email@example.com"
后:
ssh-add ~/.ssh/id_rsa
最后去看id_rsa.pub的内容:
cat id_rsa.pub
网友评论