-
git clone https://gitee.com/
首先克隆代码到本地
-
git status
利用git status查看目前所处的branch
目前处在master分支
-
git branch -a
查看存在哪些branch
-
git branch lzhou
建立一个新的branch(lzhou),然后再查看git status
存在哪些分支就可以获得如下结果:
-
git checkout lzhou
切换到lzhou branch
-
git status
当修改了文件readme.txt之后可以再查看一下status此时会提醒哪个文件哪里做了变动
-
git add readme.txt
增加readme.txt
-
git commit -m 'init'
-
git push origin lzhou
接下来就是更新了,在git端更新下lzhou branch,同时在git端可以合并lzhou和master等。
-
git checkout master
切换到master
-
git pull origin master
重新拉下来master,如果master和lzhou合并了,拉下来的就是更新后的master了