-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
64 lines (64 loc) · 1.57 KB
/
.gitconfig
File metadata and controls
64 lines (64 loc) · 1.57 KB
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
56
57
58
59
60
61
62
63
64
[user]
name = Mirosław Boruta
;email = email
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[core]
editor = gvim -f
autocrlf = false
excludesfile = /home/mirko/.gitignore_global
pager = less -FRSX
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
[alias]
a = add -A
ap = add --patch
cm = commit -m
d = diff --ignore-space-change
dw = diff --word-diff --ignore-space-change
ffmerge = merge --ff-only
human = name-rev --refs=refs/heads/* --stdin
last = cat-file commit HEAD
ll = log --pretty=format:'%Cblue%aD%Creset [%Cred%an%Creset]: %s'
logg = log --oneline --graph --decorate
lols = log --oneline --graph --decorate --simplify-by-decoration --branches --remotes
ls = ls-files
m = merge --no-ff
mnc = merge --no-ff --no-commit
st = status -sb
unstage = reset HEAD
[push]
default = current
[github]
user = MBO
;token = some token
[rerere]
enabled = true
[branch]
autosetuprebase = always
[merge]
tool = vimdiff
conflictstyle = diff3
defaultToUpstream = true
[diff]
mnemonicprefix = true
renames = copy
[rebase]
autosquash = true
[url "git@github.com:"]
insteadOf = "gh:"
pushInsteadOf = "github:"
pushInsteadOf = "git://github.com/"
[url "git://github.com/"]
insteadOf = "github:"
[url "git@gist.github.com:"]
insteadOf = "gst:"
pushInsteadOf = "gist:"
pushInsteadOf = "git://gist.github.com/"
[url "git://gist.github.com/"]
insteadOf = "gist:"
[url "git@heroku.com:"]
insteadOf = "heroku:"