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
Reference: Git Config