Remove all commits by author

2020-07-10 10:48发布

How do I remove all commits by certain author (committed by mistake - such an author should not be visible in the commits history).

I have found some code to rename -

git filter-branch --env-filter '
OLD_EMAIL="old@gmail.com"
CORRECT_NAME="name"
CORRECT_EMAIL="new@gmail.com"
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
then
export GIT_COMMITTER_NAME="$CORRECT_NAME"
export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL"
fi
if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ]
then
export GIT_AUTHOR_NAME="$CORRECT_NAME"
export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL"
fi
' --tag-name-filter cat -- --branches --tags


git push --force --tags origin 'refs/heads/*'

Is there some filter not to rename but remove such commits?

2条回答
甜甜的少女心
2楼-- · 2020-07-10 11:35

You can do it directly with a filter-branch. What you can do is to create a new branch with the desired start point and then using filter branch do a cherry-pick to the desired commit leaving out the unwanted ones.

Then in your new branch you will have all the commits without the ones made by a given author.

git cherry-pick support a range so you can save the last "good" commit and than add a range of commits instead of a single one.

Another way is to do a git revert but revert will leave the original commits in place and will just undo the changes made under the original commit.

查看更多
3楼-- · 2020-07-10 11:40

You can do it like this:

  1. Create a new branch based on the commit you want to start with:

    git checkout -b <branch-name> <base-commit>
    
  2. Cherry-pick all commits that don’t have the matching author:

    git log --author "<name>" --invert-grep --reverse --format="format:%H" HEAD..master | xargs git cherry-pick
    

The log filters out all commits made by the author and then cherry-picks them one after one.

Explanation for the parameters (partly quoted from git log manpage):

  • --author "name"
    Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression). With more than one --author=, commits whose author matches any of the given patterns are chosen (similarly for multiple --committer=).
  • --invert-grep
    Limit the commits output to ones with log message that do not match the pattern specified with --grep=
  • --reverse Output the commits in reverse order. […]
  • --format="format:%H" Use a custom format, in this case only the commit hash
查看更多
登录 后发表回答