Answers for "git list aliases"

1

git list alias commands

# Alias to list all saved alias
git config --global alias.alias "!git config --get-regexp ^alias\."

#then
git alias
Posted by: Guest on May-14-2021
1

git list aliases

$ git config --get-regexp alias
Posted by: Guest on March-03-2021
2

git 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 status
Posted by: Guest on October-07-2020
2

git 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'
Posted by: Guest on October-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language