git list alias commands
# Alias to list all saved alias
git config --global alias.alias "!git config --get-regexp ^alias\."
#then
git aliasgit list alias commands
# Alias to list all saved alias
git config --global alias.alias "!git config --get-regexp ^alias\."
#then
git aliasgit list aliases
$ git config --get-regexp aliasgit alias list
# Setup short form of commands to save keystrokes
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st statusgit list all global aliases
# Setup short form of commands to save keystrokes
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.unstage 'reset HEAD --'
git config --global alias.last 'log -1 HEAD'Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
