forked from yaf/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
60 lines (47 loc) · 1.11 KB
/
gitconfig
File metadata and controls
60 lines (47 loc) · 1.11 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
[user]
name = Nicolas Charlery
email = nicolas.charlery@gmail.com
[alias]
st = status
co = checkout
ci = commit
df = diff
dfc = diff --cached
lg = log -p --color -b
unstage = reset HEAD
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
df = diff
[color]
diff = auto
ui = auto
[global]
editor = /usr/bin/vim
[core]
editor = /usr/bin/vim
excludesfile = /opt/boxen/config/git/gitignore
[push]
default = tracking
[github]
user = nicocharlery
[diff]
color = auto
#rename = copy
# automatically detects renames
renames = true
[pager]
color = true
[status]
color = auto
[branch]
# git checkout foo automatically checks out origin/foo and names it foo and sets tracking branch.
autosetupmerge = true
# automatically set tracking branch to rebase instead of merge
autosetuprebase = always
[rebase]
# automatically sets --autosquash when rebasing interactively
# autosquash automatically reorders based on fixup! or squash! prefixes in commit message
autosquash = true
[credential]
helper = /opt/boxen/bin/boxen-git-credential
[hub]
protocol = https