feat(git): include `.gitconfig` to dotfiles

+3
git/allowed_signers
···
··· 1 + boltlessengineer@proton.me ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHYUFynzvO9dfLqn7hssLIeHBp/y5V1lKLyCnDmThgDg git-sign-key boltless@macbook-air 2 + boltlessengineer@gmail.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE/0yyrd68dgniDQoCGaLnmBJWnQWwlKSdpBbDcZ260l boltlessengineer@gmail.com (macbook pro) 3 + boltlessengineer@gmail.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIPiba8GhgbRAvM9BwNSAkmJ0RWq5GLpPK5obHQqW6Qr boltlessengineer@gmail.com (oracle server)
+26
git/gitconfig
···
··· 1 + [init] 2 + defaultBranch = main 3 + [user] 4 + name = Seongmin Lee 5 + email = boltlessengineer@proton.me 6 + signingkey = ~/.ssh/git-sign-key.pub 7 + [commit] 8 + gpgsign = true 9 + [gpg] 10 + format = ssh 11 + [gpg "ssh"] 12 + allowedSignersFile = ~/.config/git/allowed_signers 13 + [url "git@github.com:"] 14 + insteadOf = https://github.com/ 15 + [url "git@github.com:boltlessengineer/"] 16 + insteadOf = self: 17 + [core] 18 + excludesFile = ~/.config/git/gitignore_global 19 + [rerere] 20 + enabled = true 21 + [alias] 22 + lg = log --branches --remotes --tags --graph --decorate 23 + ll = log --branches --remotes --tags --graph --decorate --oneline 24 + find = !sh -c 'git-repo-search \"$@\" | fzf | awk \"{print \\$NF}\" -- 25 + 26 + # vim:ft=gitconfig
+4
git/gitignore_global
···
··· 1 + .DS_Store 2 + note 3 + 4 + # vim:ft=gitignore
-2
gitignore_global
··· 1 - .DS_Store 2 - note
···