Getting Started
Git Config
Once you are all done you can proceed by adding your identity
$ git config --global user.name "_USER_NAME_"
$ git config --global user.email name@domain.com
To chose your Git text editor run the command
$ git config --global core.editor Vim
To check your settings
$ git config --list