All of lore.kernel.org
 help / color / mirror / Atom feed
* Squash & Merge Implementation
@ 2018-08-03 12:01 Vadim Belov
  2018-08-03 13:49 ` Jeff King
  0 siblings, 1 reply; 3+ messages in thread
From: Vadim Belov @ 2018-08-03 12:01 UTC (permalink / raw)
  To: git

[-- Attachment #1: Type: text/plain, Size: 1161 bytes --]

Hello,
I'm trying to manually implement Github's *Squash&Merge *functionality.
After looking many forums like stackoverflow.com I'm still struggling with
the issue.

*The scenario is as follows*:
- master is a protected branch (configured on github)
- a service user *svc *is permitted to push to master (configured on github)
- other users don't have such permissions
- github PR status check is set to SUCCESS before execution of any set of
git commands below

1. This merges successfully without squash:
git checkout origin/master
git merge ${PR-Branch}
git push origin HEAD:master
git push origin --delete ${PR-Branch}

2. This closes the PR, but there is no update seen on master:
git checkout origin/master
git merge --squash --commit ${PR-Branch}
git push origin HEAD:master
git push origin --delete ${PR-Branch}

3. This fails to push to master with the error "GH006: Protected branch
update failed"  (despite that the PR is set to SUCCESS):
git checkout origin/master
git merge --squash ${PR-Branch}
git commit -am"comment"
git push origin HEAD:${m_mainBranch}
git push origin --delete ${m_prBranch}


Will appreciate your help on this.

Thanks,
Vadim

[-- Attachment #2: Type: text/html, Size: 2668 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-08-03 17:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-03 12:01 Squash & Merge Implementation Vadim Belov
2018-08-03 13:49 ` Jeff King
2018-08-03 17:23   ` Vadim Belov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.