DEV Community

Lu-Vuong Le πŸš€
Lu-Vuong Le πŸš€

Posted on

What bash aliases does everyone use on a daily basis? πŸ”₯

Bash aliases are incredibly useful to reduce the amount of typing and memorisation of long or repetitive commands.

Some that I have set are:

ga=git add -A
gc=git commit -m $*
gp=git push origin $*
gs=git status
Enter fullscreen mode Exit fullscreen mode

I've also come across a good list here:

https://github.com/algotech/dotaliases

That being said, I'm also curious about what aliases does everyone use often, are their favourites or find intuitive for them? πŸ˜„

Top comments (2)

Collapse
 
coderarchive profile image
Lu-Vuong Le πŸš€

Awesome! Loving the list so far :)