-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
30 lines (26 loc) · 1.01 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
[user]
email = [email protected]
name = Vasile Taranovici
# git cfix "Video on scroll down pause" // git commit -m "🐞 Fix Video on scroll down pause"
[alias]
cap = "!f() { git commit -m \"$@\"; }; f"
cfix = "!f() { git cap \"🐞 Fix $@\"; }; f"
cref = "!f() { git cap \"♻️ $@\"; }; f"
cwip = "!f() { git cap \"🚧 $@\"; }; f"
cimp = "!f() { git cap \"👌 $@\"; }; f"
cui = "!f() { git cap \"🌈 $@\"; }; f"
cadd = "!f() { git cap \"📦 Add $@\"; }; f"
cbump = "!f() { git cap \"⬆️ Bump $@\"; }; f"
cdown = "!f() { git cap \"⬇️ Downgrade $@\"; }; f"
cperf= "!f() { git cap \"⚡️ $@\"; }; f"
cburn= "!f() { git cap \"🚨 $@\"; }; f"
cclean= "!f() { git cap \"✨ $@\"; }; f"
ctool= "!f() { git cap \"🛠 $@\"; }; f"
cedit= "!f() { git cap \"✏️ $@\"; }; f"
cfeat= "!f() { git cap \"⭐️ $@\"; }; f"
cmerge= "!f() { git cap \"🔀 Merge $@\"; }; f"
# for work email
[includeIf "gitdir:~/Work/"]
path = ~/Work/.gitconfig_work
[push]
autoSetupRemote = true