-
Notifications
You must be signed in to change notification settings - Fork 9
/
.gitconfig
58 lines (44 loc) · 832 Bytes
/
.gitconfig
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
[user]
name = ryuihi1208
email = ryucrosskey@gmail.com
[core]
pager = less -R
excludesfile = ~/.gitignore
[alias]
a = add
b = branch
c = commit
d = diff
f = fetch --prune
h = help
l = log
s = status
co = checkout
pom = push origin master
graph = log --graph --all --oneline --decorate
branches = branch -a
tags = tag
stashes = stash list
remotes = remote -v
interactive = add -p
edit = rebase -i
unstage = reset HEAD --
discard = checkout --
discardall = reset --hard
uncommit = reset HEAD~
newbranch = checkout -b
deletetracking = branch -d -r --
overwrite = push --force-with-lease
[commit]
template = ~/.gitmessage.md
[color]
pager = true
status = auto
branch = auto
diff = auto
[merge]
ff = false
[diff]
renames = true
[pager]
branch = false