Последняя активность 1773734298

Версия 1ba0075e930efb4b54da1dfc28d863a07a59b815

callback.py Исходник
1old_email = b"[email protected]"
2new_email = b"[email protected]"
3new_name = "newname"
4
5if commit.author_email == old_email:
6 commit.author_name = new_name.encode("utf-8")
7 commit.author_email = new_email
8if commit.committer_email == old_email:
9 commit.committer_name = new_name.encode("utf-8")
10 commit.committer_email = new_email
11