git centralized workflows简介

git centralized workflows如下图所示:

8-1

以下图为例:

8-5

由于当前repository已经于origin/master不一致,所以在提交commit以前,要先进行fetch操作:

git fetch origin  

接下来进行rebasepush操作:

git rebase origin/master
git push origin master

最后状态如下图所示:

8-6

参考资料:
Centralized Workflows

发表评论

邮箱地址不会被公开。 必填项已用*标注

This site uses Akismet to reduce spam. Learn how your comment data is processed.