Git Product home page Git Product logo

Comments (2)

edoardob90 avatar edoardob90 commented on June 6, 2024

I think we can fix the history with git revert.

However, I didn't fully understand the "Branch protection rules" then. I thought that it would prevent from directly pushing to the remote main branch. I guess that there's some exceptions for admins/owners, but I couldn't find it GitHub settings.

from python-tutorial.

edoardob90 avatar edoardob90 commented on June 6, 2024

Okay, I changed the protection rules which should now include admins. It should be impossible to push directly to main. However, that option disabled the possibility of bypassing the checks when a pull request is opened and not yet ready to merge.

Another idea I found to completely safeguard the main, is to add the following git hook locally at .git/hooks/pre-commit:

#!/bin/sh

branch="$(git rev-parse --abbrev-ref HEAD)"

if [ "$branch" = "main" ]; then
  echo "main branch commit is blocked"
  exit 1
fi

from python-tutorial.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.