Skip to content

Commit

Permalink
👌 IMPROVE: #39 Expand Gitlog with additional emoji and git aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
apolopena committed Mar 22, 2021
1 parent dc51c73 commit 84d54d3
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion bash/snippets/emoji-log
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,28 @@ doc = "!f() { git cap \"📖 DOC: $@\"; }; f"
tst = "!f() { git cap \"🤖 TEST: $@\"; }; f"
# BREAKING CHANGE: anything that breaks the previous version/release
brk = "!f() { git cap \"‼️ BREAKING: $@\"; }; f"
# END: Emoji-Log standards
# END: Emoji-Log standards
# BEGIN: Additional Gitmojis, see https://gitmoji.dev/
# REF: anything related to factoring code
ref = "!f() { git cap \"♻️ REFACTOR: $@\"; }; f"
# TYP: typos in code, docs, comments, etc...
typ = "!f() { git cap \"✏️ FIX TYPO: $@\"; }; f"
# REV: revert changes to a previous commit
rev = "!f() { git cap \"⏪ REVERT: $@\"; }; f"
# MER: Merge Branches, code, etc...
mer = "!f() { git cap \"🔀 MERGE: $@\"; }; f"
# MVR: Move or rename resources (e.g.: files, paths, routes)
mvr = "!f() { git cap \"🚚 MOVE/RENAME: $@\"; }; f"
# COM: Add or update comments in source code
com = "!f() { git cap \"💡 UPDATE COMMENTS: $@\"; }; f"
# DAT: Perform database related changes (e.g. Migrations, seeds, APIs)
dat = "!f() { git cap \"🗃️ DATABASE: $@\"; }; f"
# IGN: Add or update a .gitignore file.
ign = "!f() { git cap \"🙈 GITIGNORE: $@\"; }; f"
# WRK: Workaround or temporary fix
wrk = "!f() { git cap \"🩹 TEMP FIX: $@\"; }; f"
# REM: Remove ddead/unused code
rem = "!f() { git cap \"⚰️ REMOVE: $@\"; }; f"
# ADD: Add libs, code, etc
add = "!f() { git cap \"➕ ADD: $@\"; }; f"
# END: Additional Gitmojis

0 comments on commit 84d54d3

Please sign in to comment.