summaryrefslogtreecommitdiff
path: root/.gitconfig
blob: 4bff9b8494e0c63c5a13573cadc44ebb8e286b82 (plain)
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
[user]
	name = Yuval Adam
	email = yuv.adm@gmail.com

[color]
        diff = auto
        status = auto
        branch = auto
        interactive = auto
        ui = true
        pager = true

[color "branch"]
        current = red
        local = yellow
        remote = green

[color "diff"]
        meta = yellow
        frag = magenta
        old = red
        new = green

[color "status"]
        added = yellow
        changed = green
        untracked = cyan

[alias]
	st = status
	cam = commit -a -m
	cm = commit -m
	br = branch
	com = checkout master
	co = checkout
	lg = ! git --no-pager log --oneline --graph -n 18 --decorate
	pure = pull --rebase
	diffc = diff --cached
	cfd = clean -fd