上传本地项目到github

  1. 在github创建一个新的repository


    上传本地项目到github_第1张图片
    新项目
  2. 将项目clone到本地
git clone https://github.com/hellofriday/GitDemo.git
  1. 进入GitDemo文件夹,创建新项目 比如GitAndroidDemo
  2. 将GitAndroidDemo添加到索引库中去,为下一步commit做准备
git add . 
  1. 将项目提交到本地仓库
git commit -m "First commit" 
  1. 将本地仓库的修改push到远程仓库
git push origin master

这时候会提示输入用户名和密码,输入完成就会push了


上传本地项目到github_第2张图片
项目

(完)

你可能感兴趣的:(上传本地项目到github)