List of Git alias
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] | |
al = "!git config --get-regexp ^alias\\." | |
br = branch | |
co = checkout | |
cod = checkout develop | |
com = checkout master | |
comn = checkout main | |
cop = checkout production | |
co1 = checkout 1.x | |
co2 = checkout 2.x | |
co3 = checkout 3.x | |
co4 = checkout 4.x | |
co5 = checkout 5.x | |
co6 = checkout 6.x | |
co7 = checkout 7.x | |
co8 = checkout 8.x | |
co9 = checkout 9.x | |
co10 = checkout 10.x | |
cmr = "!f() { git commit -m \"Release $1\"; }; f" | |
cmb = "!f() { git commit -m \"Production Build $1\"; }; f" | |
st = status | |
mrg = merge | |
mrgd = merge develop | |
mrgm = merge master | |
mrgmn = merge main | |
mrg1 = merge 1.x | |
mrg2 = merge 2.x | |
mrg3 = merge 3.x | |
mrg4 = merge 4.x | |
mrg5 = merge 5.x | |
mrg6 = merge 6.x | |
mrg7 = merge 7.x | |
mrg8 = merge 8.x | |
mrg9 = merge 9.x | |
mrg10 = merge 10.x | |
pl = pull | |
po = "!f() { git push origin develop $1 master production; }; f" | |
pt = push --tags | |
rsh = "!f() { git reset origin; git reset --hard HEAD; }; f" | |
t = "!f() { git tag $1; }; f" | |
td = "!f() { git tag -a $1 -m \"See CHANGELOG.md\"; }; f" | |
tf = "!f() { git tag -a $1 -m \"See CHANGELOG.md and UPGRADE.md\"; }; f" | |
tls = tag -n | |
tm = "!f() { git tag -a $1 -m \"$2\"; }; f" | |
trm = "!f() { git tag -d $1; }; f" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment