Can I change committer author's name in Xcode?
From Xcode in section Adjust Editor Options
in Authors
I see TarasChernysh and name of commit. So I'd like to use Taras instead of TarasChernysh. Can you help me?
Asked
Active
Viewed 420 times
-2

Taras
- 1,485
- 1
- 16
- 31
-
1Use `git config` to change `user.name`? – matt Oct 25 '20 at 17:49
1 Answers
2
You can change this with following command, if TarasChernysh is your own git user.name
:
git config --global user.name "Taras"
The --global
will make sure all of your future commits use this given user.name
. If you will only in the certain repository, then leave --global
out and the user.name
changed only for this repository.

SwissCodeMen
- 4,222
- 8
- 24
- 34