Last active
October 29, 2019 08:27
-
-
Save cabans/fa84ccabda072c01b9274df749bf9d82 to your computer and use it in GitHub Desktop.
Own modification of Emoji log for Git commits
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#.# Better Git Logs. | |
### Using EMOJI-LOG (https://github.com/ahmadawais/Emoji-Log). | |
# Git Commit, Add all and Push β in one step. | |
function gcap() { | |
git commit -m "$*" | |
} | |
# NEW. | |
function gnew() { | |
gcap "π¦ NEW: $@" | |
} | |
# IMPROVE. | |
function gimp() { | |
gcap "π IMPROVE: $@" | |
} | |
# UPDATE. | |
function gupd() { | |
gcap "π‘ UPDATE: $@" | |
} | |
# WIP. | |
function gwip() { | |
gcap "π§ WIP: $@" | |
} | |
# DELETE. | |
function gdlt() { | |
gcap "β DELETE: $@" | |
} | |
# FIX. | |
function gfix() { | |
gcap "π FIX: $@" | |
} | |
# RELEASE. | |
function grlz() { | |
gcap "π RELEASE: $@" | |
} | |
# DOC. | |
function gdoc() { | |
gcap "π DOC: $@" | |
} | |
# TEST. | |
function gtst() { | |
gcap "β TEST: $@" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment