-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
43 lines (41 loc) · 1.09 KB
/
.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
[user]
name = Arun Mahapatra
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
lg = log -p
# Semantic Commits
# https://github.com/fteem/git-semantic-commits
# https://git.wiki.kernel.org/index.php/Aliases#Advanced_aliases_with_arguments
cdo = "!f() { git commit -m \"docs: $1\"; }; f"
cfe = "!f() { git commit -m \"feat: $1\"; }; f"
cfi = "!f() { git commit -m \"fix: $1\"; }; f"
cho = "!f() { git commit -m \"chore: $1\"; }; f"
clo = "!f() { git commit -m \"localize: $1\"; }; f"
cre = "!f() { git commit -m \"refactor: $1\"; }; f"
cst = "!f() { git commit -m \"style: $1\"; }; f"
cte = "!f() { git commit -m \"test: $1\"; }; f"
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[core]
excludesfile = ~/.gitexcludes
[include]
path = .gitconfig_local
[pull]
rebase = false