Want to contribute? Fork me on Codeberg.org!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
315 B

2 years ago
alias v=`which vim`
git=`which git`
alias g=$git
alias ga="$git add"
alias gc="$git commit -m"
alias gu="ga . && gc" # u for update
alias gs="$git status"
alias gi="$git init"
alias gp="$git push"
alias gf="$git pull" # f for fetch
alias gC="$git clone"
alias goops="$git reset --soft HEAD^"
alias rm="trash-put"