-2

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?

Taras
  • 1,485
  • 1
  • 16
  • 31

1 Answers1

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