My Favorite `git` Aliases
I saw this post from @b0rk a while back, and figured Iād share my own favorite git aliases available at nonrational/dotfiles. Alias Groups All these aliases live in .gitconfig. Those that require multi-line shell operations delegate to .githelpers. h/t to Gary Bernhardtās dotfiles for establishing this excellent pattern back in 2015. Short Core Commands There are ~6 commands that I use dozens of times a day, and Iāve shortened them to 1-2 characters each. git st # `status` git ci # `commit` git aa # `add --all` git co # `checkout` git pp # `push` git f # `fetch --tags --prune` Pretty Logs The value of log --graph has been diminished since I started using squashed merge commits, but itās still useful when working with multiple nested branches. ...