]> git.wh0rd.org - home.git/blob - .gitconfig
gitconfig: add a cp-x command
[home.git] / .gitconfig
1 [user]
2 name = Mike Frysinger
3 email = vapier@gentoo.org
4 [color]
5 ui = auto
6 diff = auto
7 status = auto
8 [color "diff"]
9 old = red bold
10 new = green bold
11 plain = blue bold
12 frag = yellow bold
13 whitespace = normal green
14 meta = magenta
15 [push]
16 default = current
17 [alias]
18 a = add
19 ab = abandon
20 ar = archive
21 b = branch -v
22 bi = bisect
23 cfg = config
24 ci = commit
25 co = checkout
26 cp = cherry-pick --ff
27 cp-x = cherry-pick -x
28 d = diff
29 desc = describe
30 dl = download
31 f = fetch
32 fp = format-patch -C -M
33 g = grep
34 h = help
35 l = log
36 m = merge
37 rb = rebase --committer-date-is-author-date
38 rb-a = rebase --abort
39 rb-c = rebase --continue
40 rb-i = rebase --interactive
41 rb-s = rebase --skip
42 rl = rev-list
43 se = send-email -C -M
44 sm = submodule
45 st = status
46 t = tag
47 up = upload
48 [merge]
49 conflictstyle = diff3
50 [rebase]
51 autosquash = true
52 [sendemail]
53 chainreplyto = false
54 confirm = always
55 suppressfrom = true
56 smtpserver = localhost:1111