Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 28, 2021 07:02 pm GMT

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!


Original Link: https://dev.to/bjakyt/speed-up-your-development-with-git-aliases-c0j

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To