git delete-local
git aliases
git url
git lg
git config alias.lg "log --color --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches"
git undo
git config alias.undo "git reset HEAD~"
git aliases
git config --global alias.aliases "!git config --get-regexp ^alias | awk 'BEGIN { print \"\033[1;34mAlias\033[0m\t\t\t\033[1;32mCommand\033[0m\"; print \"------\t\t\t-------\" } \$1 != \"alias.aliases\" { alias_color = \"\033[1;36m\"; command_color = \"\033[1;33m\"; reset_color = \"\033[0m\"; alias_length = 20; alias_name = substr(\$1, 7); printf \"%s%-\" alias_length \"s%s\t%s%s%s\n\", alias_color, alias_name, reset_color, command_color, substr(\$0, index(\$0, \$2)), reset_color }'"