-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
54 lines (53 loc) · 1 KB
/
.gitconfig
File metadata and controls
54 lines (53 loc) · 1 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
[user]
name = ebith
email = ebith.h@gmail.com
[color]
ui = true
[alias]
add = add -v
amend = commit --amend --date=now --no-edit
br = branch
ci = commit -v
co = checkout
ls = log --stat
l = log --graph --decorate --all --oneline
sm = submodule
st = status
up = pull --rebase
df = diff
dfc = diff --cached
wip = !git add -u && git ci -m 'WIP'
pushf = push --force-with-lease --force-if-includes
[core]
editor = vim
pager = delta
[push]
default = simple
[rebase]
autostash = true
[pull]
rebase = true
[merge]
tool = vscode
conflictStyle = zdiff3
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
dark = true
side-by-side =true
[include]
path = .gitconfig.local
# GitHub
[url "git@github.com:"]
pushinsteadof = https://github.com/
[github]
user = ebith
[init]
defaultBranch = main
[credential "https://github.com"]
helper =
helper = !gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !gh auth git-credential