Git: Setting username and email

To set your Git username and email globally, you can type this command line in your terminal.

$ git config --global user.name "Grace Jeong"
$ git config --global user.email "grace.he.jeong@gmail.com"

You can check your Git configuration with this command line

$ git config --list

Screen Shot 2020-12-12 at 11.18.07.png

Reference: Git Config