Created
June 11, 2019 17:40
-
-
Save etiennemarais/0933ec592630a72e73e402c6656df2d1 to your computer and use it in GitHub Desktop.
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
[alias] | |
# Git Commit, Add all and Push β in one step. | |
cap = "!f() { git add .; git commit -m \"$@\"; }; 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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment