Ctrl + a
Go to the beginning of the line.
Ctrl + e
Go to the end of the line.
Command + Shift + { or }
Select tab on the left or right.
Command + Shift + { or }
Select tab on the left or right.
Command + Shift + T
Re-open a tab that you've just closed.
Command + T
Open a new tab.
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
git fetch --all -p
fetches all commits and branches from the remote repo without applying it locally.-p
also removes all stale references that no longer exist remotely eg a branch that no longer exists.