diff --git a/zsh/files/aliases.zsh b/zsh/files/aliases.zsh index 9e5330f..27af668 100644 --- a/zsh/files/aliases.zsh +++ b/zsh/files/aliases.zsh @@ -15,5 +15,6 @@ alias sc-daemon-reload="sudo systemctl daemon-reload" alias termbin="nc termbin.com 9999" +gitpush () { git add .; git commit -m "$*"; git pull; git push } dotupdate () { echo -n "Updating Dotfiles... "; git -C $HOME/.config/dotfiles pull &>/dev/null; echo "done" } themeupdate () { curl -fsSL https://starship.rs/install.sh | bash -s -- --force }