Speed up your development with Git aliases 🚀

bjakyt

Jaakko

Posted on November 28, 2021

Speed up your development with Git aliases 🚀

Git aliases are a powerful workflow tool that creates shortcuts to frequently used Git commands. Using Git aliases will make you a faster and more efficient developer.

Creating aliases

Use the command below to create aliases, replacing <alias> with the name of the alias and <command> with the command to be aliased:

command

Alternatively, you can edit the global git configuration file and add all aliases at once, by opening the git configuration file by running git config --global -e in your terminal.

Useful aliases

.gitconfig

I'm @bjakyt on Twitter. Follow me for more!

💖 💪 🙅 🚩
bjakyt
Jaakko

Posted on November 28, 2021

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

Sign up to receive the latest update from our blog.

Related