From 3c70b4e916fcf304bfd001ba6663b9572f0f9028 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sat, 29 Mar 2025 22:18:11 +0100 Subject: [PATCH] Add: gitu alias to commit & push all changes --- Configs/ZSHShell/.zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/Configs/ZSHShell/.zshrc b/Configs/ZSHShell/.zshrc index d10f1df..e32ba81 100644 --- a/Configs/ZSHShell/.zshrc +++ b/Configs/ZSHShell/.zshrc @@ -64,6 +64,7 @@ bindkey '^[[Z' undo # Shift+tab undo alias cp="cp -i" # Confirm before overwriting something alias df='df -h' # Human-readable sizes alias free='free -m' # Show sizes in MB +alias gitu='git add . && git commit && git push' # alias py="python3" # ####################################################################################################################################################