-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
46 lines (41 loc) · 830 Bytes
/
gitconfig
File metadata and controls
46 lines (41 loc) · 830 Bytes
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
[alias]
ci = commit
co = checkout
di = diff
st = status -sb
ann = annotate
b = branch
# l = log --topo-order --graph --pretty='%h %C(red)%an%Creset %s %C(yellow)%ar %C(green)%d%Creset'
l = log --all --graph --pretty=format:'%Cred%h%Creset %s %C(green)(%ar) %C(blue)%an%Creset%C(auto)%d%Creset' --date=relative
f = fetch -p --all
up = "! git pull --rebase"
[push]
default = current
[pull]
rebase = true
[rebase]
stat = true
[diff]
renames = true
[color]
ui = true
[color "branch"]
current = cyan
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[user]
name = malcolm
email = me@jgmalcolm.com
[core]
editor = vim
[clean]
requireForce = false