Tricks That Save You Time
83%
Stop Typing the Same Commands
If you find yourself typing the same long commands over and over, you can create aliases - custom shortcuts for Git commands. For example, git log --oneline --graph --all is useful but tedious to type every time.
Set up a few common aliases:
git config --global alias.lg "log --oneline --graph --all"
git config --global alias.st "status"
git config --global alias.co "switch"
git config --global alias.cm "commit -m"
git config --global alias.br "branch"
Learn Git in a Day
Everything you need, nothing you don'tEnroll now to unlock all content and receive all future updates for free.
Unlock now $9.99$7.49Learn More
Hurry! This limited time offer ends in:
To redeem this offer, copy the coupon code below and apply it at checkout:
