Last active
September 15, 2025 22:56
-
-
Save mrwormhole/9c811aee8171586f125d2399d87b9b30 to your computer and use it in GitHub Desktop.
my git config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| email = talhaaltinel@hotmail.com | |
| name = Talha Altinel | |
| signingkey = FILL_HERE_WITH_YOUR_GPG_SIGNING_KEY | |
| [url "ssh://git@github.com/"] | |
| insteadOf = https://github.com/ | |
| insteadOf = http://github.com/ | |
| [url "ssh://aur@aur.archlinux.org/"] | |
| insteadOf = https://aur.archlinux.org/ | |
| insteadOf = http://aur.archlinux.org/ | |
| [alias] | |
| gud = log --oneline --graph --color --all --decorate | |
| [filter "lfs"] | |
| required = true | |
| clean = git-lfs clean -- %f | |
| smudge = git-lfs smudge -- %f | |
| process = git-lfs filter-process | |
| [core] | |
| editor = vim | |
| [pull] | |
| ff = only | |
| [push] | |
| autoSetupRemote = true | |
| [init] | |
| defaultBranch = main | |
| [commit] | |
| gpgsign = true | |
| [tag] | |
| gpgSign = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment