Created
March 14, 2019 08:18
-
-
Save mumairofficial/24b685ccf45e20a3d50868086dfa30d0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[user] | |
name = mumair | |
email = [email protected] | |
[aliash] | |
gcmsg = commit -m | |
[alias] | |
# Git Commit, Add all and Push β in one step. | |
cap = "!f() { git commit -m \"$@\"; }; f" # git push; <- can add this as well | git add .; | |
# 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" | |
# REFACTOR. | |
refactor = "!f() { git cap \"β»οΈ REFACTOR: $@\"; }; f" | |
# INITIAL COMMIT. | |
init = "!f() { git cap \"π Initial Commit: $@\"; }; f" | |
# COSMETIC. | |
cosmetic = "!f() { git cap \"π COSMETIC: $@\"; }; f" | |
# PERFORMANCE. | |
performance = "!f() { git cap \"πͺ PERFORMANCE: $@\"; }; f" | |
# BREAKING CHANGES. | |
breaking = "!f() { git cap \"π₯ BREAKING CHANGES: $@\"; }; f" | |
# GENERAL UPDATES. | |
updates = "!f() { git cap \"β‘οΈ UPDATES: $@\"; }; f" | |
# LINT. | |
lint = "!f() { git cap \"π LINT: $@\"; }; f" | |
# code clean up (Removing code or files) π₯ | |
# Critical hotfix π | |
# improving strcture / format of the code π¨ | |
# Release / Deploying Stuff π | |
# Fix security issues π | |
# Linter warnings fix π¨ | |
# Work in progress π§ | |
# Fixed CI build π | |
# Code refactoring β»οΈ | |
# Dependency β¬οΈ β¬οΈ β β | |
# Writing bad code that need to be improved π© | |
# Typos fix βοΈ | |
# Changes revert βͺ | |
# Code update due to code review changes π | |
# Improved user experience usability πΈ | |
# Improved performance β‘οΈ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment