summaryrefslogtreecommitdiffstats
path: root/.gitconfig
diff options
context:
space:
mode:
Diffstat (limited to '.gitconfig')
-rw-r--r--.gitconfig33
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