Giter Club home page Giter Club logo

emoji-log's Introduction

EMOJI-LOG

After building hundreds of open source software I've ended up inventing a git commit log standard called EMOJI-LOG.

emoji-log


Philosophy

PHILOSOPHY

I like emoji. I like โ€™em a lot. Programming, code, geeks/nerds, open source, all of that is inherently dull and sometimes boring. Emoji (which is, in fact, the plural of emoji) helps me add colors and emotions to the mix. Nothing wrong if you want to attach feelings to this 2D flat text-based world of code. I found out that instead of memorizing hundreds of emoji it's better to keep the categories small and general.

  1. IMPERATIVE โ†“
    • Make your Git commit messages imperative.
    • Write commit message like you're giving an order.
    • E.g., Use โœ… Add instead of โŒ Added.
    • E.g., Use โœ… Create instead of โŒ Creating.
  2. RULES โ†“
    • A small number of categories โ€” easy to memorize.
    • Nothing more nothing less.
    • E.g. ๐Ÿ“ฆ NEW, ๐Ÿ‘Œ IMPROVE, ๐Ÿ› FIX, ๐Ÿ“– DOC, ๐Ÿš€ RELEASE, and โœ… TEST
  3. ACTIONS โ†“
    • Make git commits based on actions you take.
    • Use a good editor like VSCode to commit the right files with commit messages.

Start

GETTING STARTED

Only use the following Git Commit Messages. A simple and small footprint is critical here.

  1. ๐Ÿ“ฆ NEW: IMPERATIVE_MESSAGE_GOES_HERE

    Use when you add something entirely new. E.g. ๐Ÿ“ฆ NEW: Add Git ignore file

  2. ๐Ÿ‘Œ IMPROVE: IMPERATIVE_MESSAGE_GOES_HERE

    Use when you improve/enhance piece of code like refactoring etc. E.g. ๐Ÿ‘Œ IMPROVE: Remote IP API Function

  3. ๐Ÿ› FIX: IMPERATIVE_MESSAGE_GOES_HERE

    Use when you fix a bug โ€” need I say more? E.g. ๐Ÿ› FIX: Case converter

  4. ๐Ÿ“– DOC: IMPERATIVE_MESSAGE_GOES_HERE

    Use when you add documentation like README.md, or even inline docs. E.g. ๐Ÿ“– DOC: API Interface Tutorial

  5. ๐Ÿš€ RELEASE: IMPERATIVE_MESSAGE_GOES_HERE

    Use when you release a new version. E.g. ๐Ÿš€ RELEASE: Version 2.0.0

  6. โœ… TEST: IMPERATIVE_MESSAGE_GOES_HERE

    Use when it's related to testing. E.g. โœ… TEST: Mock User Login/Logout

โ€” That's it for now. Nothing more nothing less.


More

THE WORKFLOW & MEANINGS

I'd like to share what each of these emojis mean.

  • ๐Ÿ“ฆ NEW: Emoji meaning: A "package emoji" โ€” which can contain new stuff.
  • ๐Ÿ‘Œ IMPROVE: Emoji meaning: An "OK Hand emoji" โ€” which is meant to appreciate an improvement.
  • ๐Ÿ› FIX: Emoji meaning: A "bug emoji" โ€” which means there was a bug that got fixed.
  • ๐Ÿ“– DOCS: Emoji meaning: A "book emoji" โ€” which means documentation or notes just like in a book.
  • ๐Ÿš€ RELEASE: Emoji meaning: A "rocket emoji" โ€” which is meant to show a new release/launch.
  • โœ… TEST: Emoji meaning: A "check emoji" โ€” which says some test were run successfully.

For quick prototyping, I have made the following functions that you can add to your .bashrc/.zshrc files and use Emoji-Log quickly.

#.# Better Git Logs.
### Using EMOJI-LOG (https://github.com/ahmadawais/Emoji-Log).

# Git Commit, Add all and Push โ€” in one step.
function gcap() {
    git add . && git commit -m "$*" && git push
}

# NEW.
function gnew() {
    gcap "๐Ÿ“ฆ NEW: $@"
}

# IMPROVE.
function gimp() {
    gcap "๐Ÿ‘Œ IMPROVE: $@"
}

# FIX.
function gfix() {
    gcap "๐Ÿ› FIX: $@"
}

# RELEASE.
function grlz() {
    gcap "๐Ÿš€ RELEASE: $@"
}

# DOC.
function gdoc() {
    gcap "๐Ÿ“– DOC: $@"
}

# TEST.
function gtst() {
    gcap "โœ… TEST: $@"
}

To install these functions for the fish shell, run the following commands:

function gcap; git add .; and git commit -m "$argv"; and git push; end;
function gnew; gcap "๐Ÿ“ฆ NEW: $argv"; end
function gimp; gcap "๐Ÿ‘Œ IMPROVE: $argv"; end;
function gfix; gcap "๐Ÿ› FIX: $argv"; end;
function grlz; gcap "๐Ÿš€ RELEASE: $argv"; end;
function gdoc; gcap "๐Ÿ“– DOC: $argv"; end;
function gtst; gcap "โœ… TEST: $argv"; end;
funcsave gcap
funcsave gnew
funcsave gimp
funcsave gfix
funcsave grlz
funcsave gdoc
funcsave gtst

If you prefer, you can paste these aliases directly in your ~/.gitconfig file:

# Make sure you're adding under the [alias] block.
[alias]
  # Git Commit, Add all and Push โ€” in one step.
  cap = "!f() { git add .; git commit -m \"$@\"; git push; }; f"

  # NEW.
  new = "!f() { git cap \"๐Ÿ“ฆ NEW: $@\"; }; f"
  # IMPROVE.
  imp = "!f() { git cap \"๐Ÿ‘Œ IMPROVE: $@\"; }; f"
  # FIX.
  fix = "!f() { git cap \"๐Ÿ› FIX: $@\"; }; f"
  # RELEASE.
  rlz = "!f() { git cap \"๐Ÿš€ RELEASE: $@\"; }; f"
  # DOC.
  doc = "!f() { git cap \"๐Ÿ“– DOC: $@\"; }; f"
  # TEST.
  tst = "!f() { git cap \"โœ… TEST: $@\"; }; f"

Using

USING EMOJI-LOG

Here's a list of repos that make use of Emoji-Log.


badge

EMOJI-LOG BADGE COLLECTION

If your repo uses EMOJI-LOG then you can add any of the following badges to your read me and send me a PR to list your repo here.


emoji-log

  • STYLE: Flat Square
  • MARKDOWN โ†“
[![emoji-log](https://cdn.rawgit.com/ahmadawais/stuff/ca97874/emoji-log/flat.svg)](https://github.com/ahmadawais/Emoji-Log/)
  • HTML โ†“
<a href="https://github.com/ahmadawais/Emoji-Log/"><img alt="emoji-log" src="https://cdn.rawgit.com/ahmadawais/stuff/ca97874/emoji-log/flat.svg" /></a>

emoji-log

  • STYLE: Flat Rounded
  • MARKDOWN โ†“
[![emoji-log](https://cdn.rawgit.com/ahmadawais/stuff/ca97874/emoji-log/flat-round.svg)](https://github.com/ahmadawais/Emoji-Log/)
  • HTML โ†“
<a href="https://github.com/ahmadawais/Emoji-Log/"><img alt="emoji-log" src="https://cdn.rawgit.com/ahmadawais/stuff/ca97874/emoji-log/flat-round.svg" /></a>

emoji-log

  • STYLE: Non-flat Rounded
  • MARKDOWN โ†“
[![emoji-log](https://cdn.rawgit.com/ahmadawais/stuff/ca97874/emoji-log/non-flat-round.svg)](https://github.com/ahmadawais/Emoji-Log/)
  • HTML โ†“
<a href="https://github.com/ahmadawais/Emoji-Log/"><img alt="emoji-log" src="https://cdn.rawgit.com/ahmadawais/stuff/ca97874/emoji-log/non-flat-round.svg" /></a>

AlfredSnippets

Alfred Snippets

Alfred PowerPack users can use the Snippets feature to quickly call Emoji-Log, or use the text expand feature for even quicker creation.

To setup:

  1. Have Alfred 3 with PowerPack installed
  2. For auto expansion, in Alfred Settings ยป Features ยป Snippets ensure the "Automatically expand snippets by Keyword" box is checked
  3. Download & open Emoji-Log.alfredsnippets, deselecting "Strip snippets of 'auto expand' flag" when prompted

This will give the following text expander keywords for the Emoji-Log:

Keyword Snippet
;gnew ๐Ÿ“ฆ NEW:
;gimp ๐Ÿ‘Œ IMPROVE:
;gfix ๐Ÿ› FIX:
;grlz ๐Ÿš€ RELEASE:
;gdoc ๐Ÿ“– DOC:
;gtst โœ… TEST:

To edit the ; prefix to your preferred expansion flag, double click right click the Emoji-Log Collection in Alfred Settings ยป Features ยป Snippets.


Hello

If you'd like us to keep producing professional free and open source software (FOSS). Consider paying for an hour of my dev-time. We'll spend two hours on open source for each contribution. Yeah, that's right, you pay for one hour and get both of us to spend an hour as a thank you.


Thanks

LICENSE & ATTRIBUTION

MIT ยฉ Ahmad Awais.

Thanks to Munawar for making awesome badges for this project. This FOSS (free and open source software) project is updated and maintained with the help of excellent businesses listed below. Without the support from these amazing companies/individuals, this project would not have been possible. What/How? Read more about it โ†’

Feel free to say ๐Ÿ‘‹ on Twitter @MrAhmadAwais โ†’

emoji-log's People

Contributors

ahmadawais avatar austinginder avatar robertdevore avatar bijancamp avatar meyercm avatar davidsword avatar juandc avatar theodesp avatar zackkrida avatar ahollister avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.