cmt -> cmtnum

This commit is contained in:
Daylin Morgan 2024-10-20 05:35:12 -05:00
parent f422790ad5
commit 066dfe68df
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -52,7 +52,7 @@ cob = checkout -b
br = branch --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(contents:subject) %(color:green)(%(committerdate:relative)) [%(authorname)]' --sort=-committerdate br = branch --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(contents:subject) %(color:green)(%(committerdate:relative)) [%(authorname)]' --sort=-committerdate
undo = reset HEAD~1 --mixed undo = reset HEAD~1 --mixed
wip = !git add -A && git commit -m \"wip: $(date +\"%Y.%m.%d %H:%M:%S\")\" wip = !git add -A && git commit -m \"wip: $(date +\"%Y.%m.%d %H:%M:%S\")\"
cmt = !git commit -m \"$(date +\"%Y.%m.%d %H:%M:%S\")\" cmtnum = "!git commit -m \"commit #$(( $(git rev-list --count HEAD) + 1 ))\""
save = !git add -A && git commit -m \"save: $(date +\"%Y.%m.%d %H:%M:%S\")\" save = !git add -A && git commit -m \"save: $(date +\"%Y.%m.%d %H:%M:%S\")\"
aliases = "!git config -l | grep alias | cut -c 7-" aliases = "!git config -l | grep alias | cut -c 7-"
gl = config --global -l gl = config --global -l