ios - New to git and keep getting the error when I make a new repository via Xcode -
i keep getting error when make new repository:
failed parse config file: invalid configuration key (in /users/username/.gitconfig:3, column 0) (-1)
in terminal:
git init
fatal: bad config line 3
in file /users/username/.gitconfig line 3 email line , accurate
try update configuration file, in terminal write:
git config --global user.email example@email.io
and in case update username:
git config --global user.name "yourusername"
Comments
Post a Comment