-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
55 lines (55 loc) · 1.44 KB
/
.gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[alias]
ci = commit
co = checkout
br = branch
st = status
df = diff
dc = diff --cached
lg = log -p
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
lolb = log --graph --decorate --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all --simplify-by-decoration
hist = log --pretty=format:\"%h %ad|%s%d [%an]\" --graph --date=short
lolg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
ls = ls-files
edit-unmerged = "!$EDITOR `git diff --name-only --diff-filter=U`"
# Show files ignored by git:
ign = ls-files -o -i --exclude-standard
dt = difftool
tags = for-each-ref --sort=taggerdate --format '%(refname) %(taggerdate)' refs/tags
[user]
name = Maciej Pijanowski
email = [email protected]
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = magenta
old = red
new = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[diff]
tool = vimdiff
[core]
abbrev = 12
pager = less -F -X
autocrlf = input
excludesfile = /home/maciej/.global_ignore
editor = vim
[github]
user = macpijan
[pack]
windowMemory = 100m
SizeLimit = 100m
threads = 1
[sendemail]
smtpserver = /usr/bin/msmtp
[push]
default = matching