-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
38 lines (38 loc) · 864 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
34
35
36
37
38
[alias]
aliases = config --get-regexp alias
co = checkout
last = log -1 HEAD
lol = log --graph --decorate --pretty=oneline --abbrev-commit --all
ls = log --pretty=format:\"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]\" --decorate
st = status
unstage = reset HEAD
unwip = reset --soft HEAD^
up = !git fetch origin && git rebase origin/master
yolo = push --force-with-lease
psu = push
[branch]
autosetuprebase = always
[color]
ui = auto
[core]
excludesfile = ~/.gitignore
autocrlf = input
[credential]
helper = osxkeychain
[diff]
renames = true
[fetch]
prune = true
[include]
path = ~/.gitconfig.local
[interactive]
singlekey = true
[merge]
ff = only
[pull]
rebase = true
[push]
default = current
[user]
name = Jeremy McDuffie
email = [email protected]