Как изменить имя и почту git коммиттера (committer name and email)?
Глобально:
1 2 |
$ git config --global user.name "John Doe" $ git config --global user.email "john@doe.org" |
В репозитории:
1 2 |
$ git config user.name "John Doe" $ git config user.email "john@doe.org" |
Recommended Posts
Пакет Golang envconfig
11.03.2022
Git с несколькими удалёнными репозиториями
23.11.2021