git基本操作

原文链接: https://my.oschina.net/charlock/blog/1548258

 创建分支

git checkout -b x-master-lss/swams

查看当前分支

$ git branch
* x-master

查看当前修改

$ git status

添加修改文件

git add  edo_console/edo_console/utils/network.py

提交修改文件

git commit -m "modify order to console"

pull代码库,本地解决冲突

git pull origin x-master

提交到分支

git push origin x-master-lss/swarms

切换分支

git checkout branch-name

 

转载于:https://my.oschina.net/charlock/blog/1548258

你可能感兴趣的:(git基本操作)