Last active
November 30, 2024 22:12
-
-
Save miry/5194491 to your computer and use it in GitHub Desktop.
curl https://gist.githubusercontent.com/miry/5194491/raw/.gitconfig > ~/.gitconfig
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
[github] | |
user = miry | |
[user] | |
name = Michael Nikitochkin | |
email = <email> | |
comment = miry | |
signingkey = xxxxx | |
[alias] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout | |
df = diff | |
lg = log -p | |
lgg = log --graph --color | |
[commit] | |
gpgSign = true | |
sign = true | |
[push] | |
default = current | |
[pull] | |
rebase = true | |
[fetch] | |
prune = true | |
[init] | |
defaultBranch = master | |
[core] | |
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol,tabwidth=2 | |
pager = less --tabs 2 | |
excludesfile = ~/.gitignore | |
[blame] | |
ignoreRevsFile = .git-blame-ignore-revs | |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
ui = true | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold | |
old = red bold | |
new = green bold | |
[color "status"] | |
added = yellow | |
changed = green | |
untracked = cyan | |
[color "diff-highlight"] | |
oldNormal = red bold | |
oldHighlight = red bold 52 | |
newNormal = green bold | |
newHighlight = green bold 22 | |
[filter "lfs"] | |
required = true | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
; [sendemail] | |
; smtpserver = smtp.gmail.com | |
; smtpserverport = 587 | |
; smtpencryption = tls | |
; smtpuser = [email protected] | |
; smtppass = <pass> | |
; [url "ssh://[email protected]"] | |
; insteadOf = https://github.com | |
;[includeIf "gitdir:~/src/foo/"] | |
; path = .gitconfig-foo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment