-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
59 lines (58 loc) · 1.2 KB
/
gitconfig
File metadata and controls
59 lines (58 loc) · 1.2 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
[core]
excludesFile = ~/.gitignore
[alias]
a = add
b = branch
c = commit
d = diff
f = fetch
l = log
m = merge
p = push
s = status
t = tag
r = remote
br = browser
cf = config
cl = clone
cr = create
co = checkout
fr = fork
re = remote
rs = reset
rb = rebase
rv = revert
pl = pull
st = stash
ui = update-index
ls-subtrees = !"git log | grep git-subtree-dir | tr -d ' ' | cut -d ":" -f2 | sort | uniq"
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
type = cat-file -t
dump = cat-file -p
[push]
default = current
[github]
user = jugend
[user]
email = herryanto@gmail.com
name = Herryanto Siatono
[http]
sslVerify = false
[pull]
ff = only
[init]
defaultBranch = develop
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
# To allow 'gh auth switch' to work properly,
# To switch to another github account
# To setup, run: gh auth setup-git --hostname github.com
[credential "https://github.com"]
helper =
helper = !/opt/homebrew/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/opt/homebrew/bin/gh auth git-credential