Last active
March 19, 2021 17:05
-
-
Save Zzl615/f9c42bb83751f4ead1d65daa686de69d 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 gpl="git pull origin" | |
alias gps="git push origin" | |
alias gst="git status" | |
alias gd="git diff" | |
alias gsm="git commit -m" | |
alias grs="git reset --soft" | |
alias grh="git reset --hard" | |
alias gdca='git diff --cached' | |
alias del_pyc="find . -type f -name '*.pyc' -delete" | |
alias py_info="python --version" | |
alias NET="lsof -i -P |grep" | |
alias NOH="nohup bash -c './run.sh' &" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment