How can I find out who force pushed in git?

Update Nov. 2018: if you are pushing to a centralized Git repository hosting service like GitHub, then you would be able to see who has forced push your branch. But only because GitHub has chosen to surface that event in its GUI.

https://pbs.twimg.com/media/DsJIVxtU4AAreMW.jpg:large

See more at “Find committer of a force push on GitHub“.


Original answer 2013:

As I mention in “Distributed Version Control Systems and the Enterprise – a Good mix?“, there is no authorization or authentication with Git alone.

You need an authorization layer like Gitolite in order to keep track of who does what. (Gitolite comes with its own audit trail mechanism).

But if your repo is accessible through file (or local) protocol, then you cannot know who forced pushed.

polygraph (from motivationalgenerator.com, and wikipedia)

Leave a Comment