Android-git的第一次使用-将本地文件上传到github

时间:2021-04-22 20:59:00

1.git init

初始化本地git

2.git add .

将所有文件放到创库中

3.git commit -m "注释语句"

初始化提交提示信息

4.去github上创建自己的Repository 名字一定要和本地的文件夹一样 得到一个URL


5.git remote add origin https://github.com/staringburning/Demo_mySelifView.git

将本地的仓库关联到github上 


6.git pull origin master

上传之前 先拉取一下看有没有新的信息


7.git push -u origin master

最后提交完成 大功告成