How to configure Git
Git is a version control system by Linus Torvalds, same person who wrote linux kernel.
Installation
In Archlinux, you can install git by:
|
|
In Debian and derived distributions:
|
|
Configuration
You have to tell git about the author who committed changes so lets do it.
Name and Email
Tell git about your name and email:
|
|
Replace John Doe
and with your name and your_email@domain.com
with your name and email.
Signing key
If you use gpg to sign the commits/tags, you have to tell git about your signing key.
|
|
Replace your_email@domain.com
with your email address you used when creating gpg keypair.