Home > OS >  How to remove contributors in github repository?
How to remove contributors in github repository?

Time:08-03

When I work on team repo, I used another github account to commit to the private repo.

So I removed the wrong commit as git command.

As the result, the wrong commits were removed. But the repository still shows with two contributors.

How can I remove the wrong commit user?

CodePudding user response:

You can't remove the contributors, they are still have commit history in your repo,

contributors and collaborators is totally different.

collaborators are contributors authorized by the repository owner to have direct access to repositor (without doing fork)

  • Related