-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
53 lines (44 loc) · 1006 Bytes
/
gitconfig
File metadata and controls
53 lines (44 loc) · 1006 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
47
48
49
50
51
52
53
[core]
editor = vim
excludesfile = ~/.gitignore
whitespace = blank-at-eol,cr-at-eol,tabwidth=4,tab-in-indent,space-before-tab
[user]
name = "Maciek Lenc"
email = "maciej.lenc@sage.com"
[alias]
a = add
aa = !git add . && git status
ap = add -p
b = branch
c = commit -v
co = checkout
cob = checkout -b
cr = diff -p --no-prefix -U1000
d = diff
dc = diff --cached
df = diff --function-context
f = fetch
in = !git fetch && git log ..origin/master
ls = ls-files
pl = pull
pp = !git pull && git push
ps = push
s = status
ss = status -s
tl = log --tags --simplify-by-decoration --pretty=format:'%ai %d'
tlg = log --date-order --graph --tags --simplify-by-decoration --pretty=format:'%ai %h %d'
who = shortlog -n -s --no-merges
[pull]
default = current
[push]
default = current
[difftool]
prompt = false
[merge]
conflictstyle = diff3
[mergetool]
prompt = false
[core]
excludesfile = /Users/maciej.lenc/.gitignore
[grep]
lineNumber = true