let alice , bob works on same bitbucket git repository. alice has admin privileges, while bob has restriction write on master branch. each time bob want contribute, makes special branch, commits , pull request.
alice prefer gui while bob ok command line.
question: way bob can sure alice able merge bitbucket website gui button?
p.s. or maybe there other workflow situation? when alice should control changes master branch , whats accepts pull requests via button.
what way bob can sure alice able merge bitbucket website gui button?
bob has make sure branch based on latest version of master, in order pull request result in trivial fast-forward merge of branch master.
so before pushing, rebasing on top of master:
git fetch git rebase origin/master git push --force
(since bob 1 working on branch, changing history won't issue, , force pushing fine: pull request, if created before, adjust new history of branch)
Comments
Post a Comment