Name Last Update
atdd Loading commit data...
tests/Staff-Management/Organization Loading commit data...
.gitignore Loading commit data...
README.md Loading commit data...

先去gitlab上创建开发分之:feature/jipeihong

在本地项目中git输入命令: git pull

现在可以看到创建的开发分之,然后拉取开发分支 git fetch origin feature/jipeihong:feature/jipeihong

(运行git status, 切记要没有修改)

切换到开发分支: git checkout feature/jipeihong

创建本地开发分支,对应gitlab开发分支: git checkout topic/jipeihong

然后进行rebase: git rebase feature/jipeihong

(然后就可以进行你的开发了)

查看已经修改的东西 git status

确认好后进行提交 git add .

接着提交 git commit -m '你的提交评论'

然后推送到gitlab git push origin topic/jipeihong:feature/jipeihong

如果上面命令失败了,说明别人也同时有修改提交,需要你拉取下代码 git fetch origin feature/jipeihong:feature/jipeihong

git rebase feature/jipeihong

rebase没问题就可以继续前面的git push命令了。

rebase有问题的话需要解决下冲突。