-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
33 lines (31 loc) · 885 Bytes
/
gitconfig
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
# This is Git's per-user configuration file.
[core]
[user]
name = Cullen Rhodes
email = rhodes.cullen@gmail.com
[push]
default = simple
[alias]
l = log --all --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
d = diff --patch-with-stat
dt = difftool
c = clone --recursive
ca = !git add -A && git commit -av
go = checkout -B
tags = tag -l
remotes = remote -v
undopush = push -f origin HEAD^:master
pom = push origin master
s = status -sb
branches = branch -a
co = checkout
ci = commit
st = status
gr = log --graph --full-history --all --color --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x20%x1b[33m(%an)%x1b[0m"
[merge]
conflictStyle = diff3
[core]
editor = vim
[diff]
indentHeuristic = true
tool = meld