Git command line alias shortcuts
You can define aliases in bash but in vanilla form they must be 1 word
alias ll='ls -l'
I'd like to define a 2 word alias for some git commands e.g. "git s" for "git status"
Well, git does support setting aliases for commands
alias ll='ls -l'
I'd like to define a 2 word alias for some git commands e.g. "git s" for "git status"
Well, git does support setting aliases for commands
Comments
Post a Comment