mirror of
https://github.com/zoriya/dotfiles.git
synced 2026-06-11 05:38:26 +00:00
17 lines
263 B
Bash
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"
|