Skip to content

Commit 84d54d3

Browse files
committed
👌 IMPROVE: #39 Expand Gitlog with additional emoji and git aliases
1 parent dc51c73 commit 84d54d3

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

bash/snippets/emoji-log

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,28 @@ doc = "!f() { git cap \"📖 DOC: $@\"; }; f"
2020
tst = "!f() { git cap \"🤖 TEST: $@\"; }; f"
2121
# BREAKING CHANGE: anything that breaks the previous version/release
2222
brk = "!f() { git cap \"‼️ BREAKING: $@\"; }; f"
23-
# END: Emoji-Log standards
23+
# END: Emoji-Log standards
24+
# BEGIN: Additional Gitmojis, see https://gitmoji.dev/
25+
# REF: anything related to factoring code
26+
ref = "!f() { git cap \"♻️ REFACTOR: $@\"; }; f"
27+
# TYP: typos in code, docs, comments, etc...
28+
typ = "!f() { git cap \"✏️ FIX TYPO: $@\"; }; f"
29+
# REV: revert changes to a previous commit
30+
rev = "!f() { git cap \"⏪ REVERT: $@\"; }; f"
31+
# MER: Merge Branches, code, etc...
32+
mer = "!f() { git cap \"🔀 MERGE: $@\"; }; f"
33+
# MVR: Move or rename resources (e.g.: files, paths, routes)
34+
mvr = "!f() { git cap \"🚚 MOVE/RENAME: $@\"; }; f"
35+
# COM: Add or update comments in source code
36+
com = "!f() { git cap \"💡 UPDATE COMMENTS: $@\"; }; f"
37+
# DAT: Perform database related changes (e.g. Migrations, seeds, APIs)
38+
dat = "!f() { git cap \"🗃️ DATABASE: $@\"; }; f"
39+
# IGN: Add or update a .gitignore file.
40+
ign = "!f() { git cap \"🙈 GITIGNORE: $@\"; }; f"
41+
# WRK: Workaround or temporary fix
42+
wrk = "!f() { git cap \"🩹 TEMP FIX: $@\"; }; f"
43+
# REM: Remove ddead/unused code
44+
rem = "!f() { git cap \"⚰️ REMOVE: $@\"; }; f"
45+
# ADD: Add libs, code, etc
46+
add = "!f() { git cap \"➕ ADD: $@\"; }; f"
47+
# END: Additional Gitmojis

0 commit comments

Comments
 (0)