一、 本地代码第一次上传
1. 在github官网上,创建远程仓库,并获取SSH 。 例如:-git@github.com:ManPT/Web-.git
2.创建并初始化本地仓库
- 右击要上传的项目,选择Git Bash Here,打开git终端
- 创建并初始化本地仓库: git init
- 代码添加到本地仓库: git add
- 提交: git commit -m "第一次上传"
3. 生成公钥和私钥,添加到github中
备注: 如果出现 “Please make sure you have the correct access rights and the repository exists” 提示,是因为没有配置好公钥。
- git config --global user.name "yourname" 设置github用户名
- git config --global user.email "your@email.com" 设置邮箱地址
- ssh-keygen -t rsa -C "your@email.com" 生成公钥和私钥
- 将C盘User目录下 .ssh 文件夹下生成的公钥 id_rsa.pub文件内容复制
- 打开github官网,进入Setting目录,SSH and GPG keys 选项卡,点击 New SSH key,将上一步复制的密钥内容,粘贴进去
4. 关联远程仓库
git remote add origin git@github.com:ManPT/Web-.git
5. 提交到远程仓库
git push -u origin master
网友评论