Home > Software design >  Why is no username and email show in up on the list when I already ran the git config --global user.
Why is no username and email show in up on the list when I already ran the git config --global user.

Time:02-05

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?

enter image description here

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

  •  Tags:  
  • Related