Created
April 21, 2020 19:35
-
-
Save edieblu/ac74baf5b8cb1fd66edb2c0218c508e1 to your computer and use it in GitHub Desktop.
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