-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdot_gitconfig
More file actions
41 lines (41 loc) · 733 Bytes
/
dot_gitconfig
File metadata and controls
41 lines (41 loc) · 733 Bytes
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
[user]
useConfigOnly = true
[color]
ui = auto
[alias]
b = branch
co = checkout
ls = ls-files
lg = log --graph --pretty=oneline --abbrev-commit
lgd = !git lg --decorate
st = status
fix = commit --amend
sm = submodule
[core]
ignorecase = false
[push]
default = simple
autoSetupRemote = true
[fetch]
prune = true
[pull]
ff = only
[rebase]
autostash = true
autosquash = true
[pager]
branch = false
[ghq]
root = ~/repos
[wt]
basedir = .git/wt
[include]
path = ~/.gitconfig.default
[includeIf "gitdir:~/repos/github.com/"]
path = ~/.gitconfig.github
[includeIf "gitdir:~/.local/share/chezmoi/"]
path = ~/.gitconfig.github
[url "https://"]
insteadOf = git://
[url "https://github.com/"]
insteadOf = git@github.com: