Git lesson 0: configure user.name and user.email

After installing Git, you will have to provide your name and email address. You will use the –global flag to set a default Git user.name and user.email for all your projects. This can be overriden by –local if ever you want to use a different username or email for a specific project. git config –global user.name “Martin Heroux” git config
Read more