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 :)