将本地项目上传到github

Posted by WWJ on May 11, 2018

将本地项目上传到github上面

默认你已经有了自己github账号

  1. 新建一个仓库 Alt text Alt text
  2. 复制仓库路径,之后会用到 Alt text
  3. 在你要部署到github的项目根目录下面右键打开控制台 Alt text
  4. 执行命令git init Alt text
  5. 执行命令git add .将本地所有文件提交到缓存区 Alt text
  6. 执行命令git commit -m "提交的信息" Alt text
  7. 执行命令git remote add origin https://github.com/wwjwentworth/new-repo.git(这个就是你刚才在github上新建的仓库)添加源到github Alt text
  8. 执行命令git push -u origin master上传到github 这个时候会要求你输入github的账号和密码 Alt text
  9. 刷新github Alt text yeah~上传成功