Skip to content

Instantly share code, notes, and snippets.

(Version: 1.0.65)

Weapon (Attack
Speed)
Crit % Crit Dmg Damage Duration Knockback Proj.
Bounces
Proj.
Count
Proj.
Speed
Size
Flamewalker
Sword
Lightning Staff
Firestaff
Ch
@Avecyclop
Avecyclop / .gitconfig
Last active February 7, 2022 21:18
My git aliases
[alias]
lg = log --graph --decorate --all --oneline --pretty=format:'%C(yellow)%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(cyan)<%an>%Creset'
l = !"git lg --max-count=15"
lm = !"git lg --max-count=25 --no-merges"
lc = log ORIG_HEAD.. --stat --no-merges
st = status
sc = show --name-only --pretty=format:'%C(yellow)%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(cyan)<%an>%Creset'
whois = "!sh -c 'git log -i -1 --pretty=\"format:%an <%ae>\n\" --author=\"$1\"' -"
whatis = show -s --pretty='tformat:%h (%s, %ad)' --date=short
forkdiff = !bash -c 'git diff $(git merge-base "$1" "$2") "$2" "${@: 3}" ' -