Hacker News new | ask | show | jobs
by mkhnews 851 days ago
Same here -

[alias]

    alias = "!git config --get-regexp ^alias. | sed 's/^alias.//'"
1 comments

! Is for external commands. You can drop the !git from that alias.
Not if you're piping it to sed though, right?
Oh! Thanks for clarifying!