GitHub - prevent collaborators from using push -f

前端 未结 2 723
失恋的感觉
失恋的感觉 2020-12-06 04:18

Is there a way to prevent force push into a branch or repository?

I want to stop important branches from having their history rewritten either accidentally or int

相关标签:
2条回答
  • 2020-12-06 04:30

    This is easy to do with Git with a pre-receive hook. Of course, this requires that you are actually able to install hooks, and for obvious reasons, GitHub doesn't allow you to upload arbitrary executable files to run on their servers :-)

    In general, the workflow with Git or really any distributed version control system, is that you don't allow other people to push to your repository. Instead, you pull from theirs. This requires a much lower level of trust. So, this would be workaround number 1: don't let them push, have them fork and then pull from them. That way, you can control what goes into your repository.

    Another workaround would be to set up your own staging repository on a server you own, where you can install your own Git hooks. You can configure a pre-receive hook which denies pushing if it's not a fast-forward and post-receive hook which automatically forwards all pushes to GitHub. Of course, this means that you lose many of the benefits of using GitHub in the first place.

    As a third workaround, you could use multiple repositories. This is a combination of the two other approaches: have one repository that your collaborators can push to and another one that only you have access to, that you pull into from the first repository.

    At any rate, you should file a feature request with GitHub (especially if you are a paying customer!) since this seems to be a useful feature.

    0 讨论(0)
  • 2020-12-06 04:53

    GitHub announced the "protected branches" feature:

    [...] a new feature called Protected Branches which gives repository administrators the ability to disable force pushes to specific branches. [...] go to the Branches tab in repository settings and protect branches.

    Source: https://github.com/blog/2051-protected-branches-and-required-status-checks

    0 讨论(0)
提交回复
热议问题