This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias help="tldr" | |
alias top="sudo htop" | |
alias yt="youtube-dl" | |
alias reload="source ~/.zshrc" | |
alias finder="open -a Finder ./" | |
alias weather="curl -4 https://wttr.in/Brussels" | |
alias cat='bat' | |
alias md='mkdir -p' | |
alias please=sudo | |
alias d='dirs -v | head -10' | |
alias ip='curl ifconfig.io' | |
# misc git alias | |
alias g=git | |
alias gc='git commit -a -m' | |
# g c "Commit message goes here" | |
alias f="!git fetch --all && git pull origin/master" | |
alias n="!git checkout -b" | |
alias gs='git status -sb' | |
alias gstats='git shortlog -sn --all --no-merges' | |
alias grecent='git for-each-ref --count=10 --sort=-committerdate refs/heads/ --format="%(refname:short)"' | |
alias gfix='git commit --amend --no-edit' | |
alias repo='gh repo view -w' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment