diff options
| author | Yigit Sever | 2019-03-17 23:09:49 +0300 |
|---|---|---|
| committer | Yigit Sever | 2019-03-17 23:18:28 +0300 |
| commit | ea211500227aa58f5e495777743c5d391cbc3110 (patch) | |
| tree | afa2b455f9fea40b45dbf8a742c0d0d498024edb /.gitconfig | |
| download | dotfiles-ea211500227aa58f5e495777743c5d391cbc3110.tar.gz dotfiles-ea211500227aa58f5e495777743c5d391cbc3110.tar.bz2 dotfiles-ea211500227aa58f5e495777743c5d391cbc3110.zip | |
Initial commit
Diffstat (limited to '.gitconfig')
| -rw-r--r-- | .gitconfig | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..ae74399 --- /dev/null +++ b/.gitconfig | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | [user] | ||
| 2 | name = Yigit Sever | ||
| 3 | email = yigit.sever@tedu.edu.tr | ||
| 4 | signingkey = 043FE5D3E75368AA | ||
| 5 | [core] | ||
| 6 | autocrlf = input | ||
| 7 | safecrlf = true | ||
| 8 | pager = diff-so-fancy | less --tabs=4 -RFX | ||
| 9 | [alias] | ||
| 10 | co = checkout | ||
| 11 | ci = commit | ||
| 12 | st = status | ||
| 13 | br = branch | ||
| 14 | hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short | ||
| 15 | type = cat-file -t | ||
| 16 | dump = cat-file -p | ||
| 17 | adog = log --all --decorate --oneline --graph | ||
| 18 | [credential] | ||
| 19 | helper = cache --timeout=3600 | ||
| 20 | [color] | ||
| 21 | ui = true | ||
| 22 | [color "diff-highlight"] | ||
| 23 | oldNormal = red bold | ||
| 24 | oldHighlight = red bold 52 | ||
| 25 | newNormal = green bold | ||
| 26 | newHighlight = green bold 22 | ||
| 27 | [color "diff"] | ||
| 28 | meta = yellow | ||
| 29 | frag = magenta bold | ||
| 30 | commit = yellow bold | ||
| 31 | old = red bold | ||
| 32 | new = green bold | ||
| 33 | whitespace = red reverse | ||
