-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
43 lines (43 loc) · 966 Bytes
/
gitconfig
File metadata and controls
43 lines (43 loc) · 966 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
42
43
[alias]
s = status -sb
co = checkout
b = branch
dt = difftool
dh = difftool origin/main HEAD
dhn = difftool origin/main HEAD --name-only
oneline = log --oneline --abbrev-commit --all --graph --decorate --color
o = log --oneline --abbrev-commit --all --graph --decorate --color
ru = rebase-update
ac = commit -a
aca = commit -a --amend
n = checkout --track origin/main -b
[user]
email = estaab@google.com
name = Erik Staab
[diff]
tool = vimdiff
[difftool]
prompt = false
tool = vimdiff
[color]
[core]
pager = "less -FRSX"
precomposeUnicode = true
[http]
cookiefile = /usr/local/google/home/estaab/.gitcookies
[push]
default = simple
[pager]
branch = false
[pull]
rebase = true
[submodule]
recurse = true
[init]
defaultBranch = main
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential