Files
2022-04-08 14:53:13 +02:00

17 lines
263 B
Bash

push()
{
if [[ -z "$1" ]]; then
git push
return
fi
git add -A && git commit -m "$*" && git push
}
alias "s"="git status"
alias "gs"="git status"
alias "gp"="git pull"
alias "gP"="git push"
alias "gl"="git log"
alias "gf"="git fetch"
alias "gd"="git diff"