forked from jumski/old-dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
90 lines (82 loc) · 2.55 KB
/
gitconfig
File metadata and controls
90 lines (82 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[user]
name = Sebastian Skopp
email = sebastian.skopp@gmail.com
[alias]
ci = commit
cim = !git-cim
# s = status
s = status -s
d = diff
dc = diff --cached
c = checkout
b = branch
ba = branch -a
l = log
yesterday = log --pretty=format:\"%Cgreen%h%Creset %Cblue%ad%Creset %s%C(yellow)%d%Creset %Cblue[%an]%Creset\" --graph --date=short --after=yesterday --author=Wojtek
today = log --pretty=format:\"%Cgreen%h%Creset %Cblue%ad%Creset %s%C(yellow)%d%Creset %Cblue[%an]%Creset\" --graph --date=short --since='1 Day Ago' --date=relative --author=Wojtek
clfd = clean -fd
cap = !git commit && git push && cap deploy
unstage = reset HEAD # removes files from index
uncommit = reset --soft HEAD^
amend = commit --amend
chr = cherry -v
rmt = remote -v
wc = whatchanged
lp = log -p
hist = log --pretty=format:\"%Cgreen%h%Creset %Cblue%ad%Creset %s%C(yellow)%d%Creset %Cblue[%an]%Creset\" --graph --date=short
h = log --pretty=format:\"%Cgreen%h%Creset %Cblue%ad%Creset %s%C(yellow)%d%Creset %Cblue[%an]%Creset\" --graph --date=short
dstat = diff --stat
wtf = !git-wtf
conflicts = !git ls-files -u | cut -f 2 | sort -u
resolve = !vim -p $(git conflicts)
stats = !git-stats
rank = !git-rank-contributors
new = ls-files --others --exclude-standard
done = !git fetch origin && git rebase origin/master && git checkout master && git merge --no-ff @{-1} && bundle exec rake && git push
ribbon = tag --force _ribbon origin/master
catchup = log --patch --reverse --topo-order _ribbon..origin/master
ctags = !.git/hooks/ctags
binstubs = !.git/hooks/install-binstubs
good = bisect good
bad = bisect bad
next =!git add . && git rebase --continue
up = !git fetch origin && git rebase origin/master
aa = add .
plre = pull --rebase
ff = merge --ff-only
noff = merge --no-ff
prune-remotes = remote prune origin
axe = !git-axe
axer = !git-axer
[giggle]
main-window-maximized = true
main-window-geometry = 0x0+0+0
history-view-vpane-position = 577
main-window-view = HistoryView
[push]
default = current
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[core]
autocrlf = input
whitespace = trailing-space,cr-at-eol
excludesfile = /home/jumski/.gitignore_global
[github]
user = jumski
[dude]
interval = 30
icon = /home/jumski/dotfiles/vendor/icons/github-icon.png
[init]
templatedir = /home/jumski/dotfiles/git_template
# url shortcuts
[url "git@heroku.com:"]
insteadOf = heroku:
[url "git://github.com/"]
# Read-only
insteadOf = gh:
[url "git@github.com:"]
# With write access
insteadOf = wgh: