Why is no username and email show in up on the list when I already ran the git config --global user....(I am sure that name and email are correct)
which step is mistake?

CodePudding user response:
There is a space missing between the config key and your name/email.
CodePudding user response:
ya you miss the space. you must write with space at this.
git config --global user.email "Youremail@com"
git config --global user.email "YourName"
cmiiw
