DEV Community

Discussion on: Using Aliases to Speed Up Your Git Workflow

Collapse
 
jvanbruegge profile image
Jan van Brügge

I wouldnt use bash aliases for the commands, just for git itself. That way you keep tab completion on the aliases.
For example:
g l = g log --pretty=oneline --graph
g caa = g commit -a --amend
The g is a normal bash alias

Collapse
 
robertcoopercode profile image
Robert Cooper

Tab completion still works for me when I use zsh aliases.