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

coderarchive

Lu-Vuong Le πŸš€

Posted on April 28, 2020

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? πŸ˜„

πŸ’– πŸ’ͺ πŸ™… 🚩
coderarchive
Lu-Vuong Le πŸš€

Posted on April 28, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related