保持树的整洁

在团队使用git的过程中,期望保持树的整洁,不想有太多支线。


在git push之前,先git fetch获取目前的所有云端提交,再git rebase获取。

git fetch origin/master

git rebase origin/master

git push

你可能感兴趣的:(保持树的整洁)