The Git Meta File

helloandwelcometomysiteithinktimbernersleewouldlikethissiteverymuch

Setting up your identity

Your git identity is how you tell others who you are: your name and email.
The userspace git configuration file can be found at '~/.gitconfig'. It is a plaintext file that defines various parameters.


[user]
    name = Droich Lastname
    email = example@droi.ch

[includeIf "gitdir:/home/droich/dev/work/"]
    path = /home/droich/.gitconfig-work

[includeIf "gitdir:/home/droich/dev/personal/"]
    path = /home/droich/.gitconfig-personal

[gpg]
        format = ssh
[commit]
        gpgsign = true
[gpg "ssh"]
        allowedSignersFile = /home/droich/.ssh/allowed_signers