第一次搭建git项目测试
创建ssh_keygen命令 $ ssh-keygen -t rsa -C "[email protected]" 位置在c/users/.ssh下的id_rsa.pub
验证是否成功命令 $ ssh -T [email protected]
接下来我们要做的就是把本地仓库传到github上去,在此之前还需要设置username和email,因为github每次commit都会记录他们。 $ git config --global user.name "your name" $ git config --global user.name "your name"$ git config --global user.email "[email protected]" (4)进入要上传的仓库,右键git bash,添加远程地址: $ git remote add origin [email protected]:yourName/yourRepo.git
可以直接找到项目目录下的.git下的config文件直接修改