Guest User

Untitled

a guest
Aug 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $ git config --get-regexp '^alias\.'
  2. alias.st status
  3. alias.br branch
  4. alias.co checkout
  5. alias.ci commit
  6.  
  7. #heck, you could even alias that
  8.  
  9. $ git config --global alias.listalias 'config --get-regexp '^alias\.''
  10.  
  11. #and call it like
  12.  
  13. $ git listalias
  14. alias.st status
  15. alias.br branch
  16. alias.co checkout
  17. alias.ci commit
  18. alias.listalias config --get-regexp ^alias.
Add Comment
Please, Sign In to add comment