赞
踩
1.创建一个分支 git branch omby
2.切换分支 git checkout omby
3.查看本地代码状态 git status
4.查看自己修改的代码 git status
5.添加修改的代码到缓存 git add .
6.做一次提交,指定提交的远程分支 git push origin omby
7.提交到远程仓库 git push