Useful aliases in the command line
Below are some useful aliases that can save you time:
# push the current branch to remote(origin)
ggpush='git push origin $(git rev-parse --abbrev-ref HEAD)'
# move up directories, I use this with zsh, not sure if bash supports this
..='cd ..'
...='cd ../..'
# equality, open a documentation page for a tool
woman=man
Comments ()