1. 在本地克隆项目
git clone [l链接]
2. 在本地生成一个新项目
git init
3. 在本地编辑文件后,查看仓库情况
git status
4. 在本地对文件修改
git add [文件名/]
5. 在本地提交修改
git commit
注意此时会要求你编辑修改说明,直接关掉页面会显示abord
6. 查看远程仓库
git remote -v
7. 向远程仓库提交修改
git push origin master
本地分支默认为master 远程仓库默认叫origin
标签:origin,git,命令行,仓库,流程,修改,Github,本地,远程 From: https://www.cnblogs.com/Alex777Li/p/16869562.html