Skip to content

Instantly share code, notes, and snippets.

View farsh4d's full-sized avatar

Farshad Hassani farsh4d

View GitHub Profile
@farsh4d
farsh4d / .bashrc
Last active October 13, 2023 13:41
Bashrc Alias Commands
#Git
alias gc="git clone"
alias ga="git add"
alias ga.="ga ."
alias gcm="git commit -m"
alias gp="git push"
alias gpl="git pull"
alias gm="git merge"
alias gs="git status"
alias gpo="gp origin"