假設主分支 http://10.1.1.1/group/project (group能夠是項目組名稱)git
開發須要Fork分支到 http://10.1.1.1/staff/project (staff是具體的開發者的帳號)fetch
而後設置Upstream到主分支 git remote add upstream http://10.1.1.1/group/project開發
而後更改後提交PRrem
對於主分支的合併使用 git fetch upstream && git merge upstream/masterit
合併具體的提交使用 git cherry-pick #commit_id#ast