Removing a contributor from github.com?

How to remove a contributor from showing on the project main page:

enter image description here

The link https://help.github.com/articles/removing-a-collaborator-from-a-personal-repository/ says that this is possible in the settings, but I do not see any co-authors there:

enter image description here

+4
source share
2 answers

You cannot (at least without rewriting history, which is extremely unjustified).

These users record the history of your repository, and therefore lines of code were added by them. Even if you delete all of your lines of code, they will still appear as a contributor.

Participants are not employees.

- , ( ) , , .

+9

, ( ). , , (. ).

. , filter-branch, . script:

git filter-branch --env-filter '
if [ "$GIT_AUTHOR_NAME" = "OLD NAME" ]; then \
    export GIT_AUTHOR_NAME="NEW NAME" GIT_AUTHOR_EMAIL="new.name@mail.com"; \
fi
'

, - , , Peter Reid.

+2

Source: https://habr.com/ru/post/1679325/


All Articles