-
在github创建一个新的repository
新项目 - 将项目clone到本地
git clone https://github.com/hellofriday/GitDemo.git
- 进入GitDemo文件夹,创建新项目 比如GitAndroidDemo
- 将GitAndroidDemo添加到索引库中去,为下一步commit做准备
git add .
- 将项目提交到本地仓库
git commit -m "First commit"
- 将本地仓库的修改push到远程仓库
git push origin master
这时候会提示输入用户名和密码,输入完成就会push了
项目
(完)
网友评论