1、本地创建ssh key:
$ ssh-keygen -t rsa -C "[email protected]"
2、回到github,进入Account Settings,左边选择SSH Keys,Add SSH Key,title随便填,粘贴key。为了验证是否成功,在git bash下输入:
$ ssh -T [email protected]
如果是第一次的会提示是否continue,输入yes就会看到:You’ve successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github。
3、设置username和email,因为github每次commit都会记录他们。
$ git config --global user.name "your name" $ git config --global user.email "[email protected]"
4、
1)、从git上获取项目
$ git clone (fork过来项目的ssh地址)
2)、把本地仓库传到github
$ git remote add origin [email protected]:yourName/yourRepo.git
end!
时间: 2024-11-05 20:46:04