From c4344c0b5cb37a2f4e110daab11ca93182f44a09 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sun, 25 Oct 2020 23:05:58 +0100 Subject: [PATCH] Add echos --- dotfiles/shell/aliases | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dotfiles/shell/aliases b/dotfiles/shell/aliases index 8ec2638..2159b18 100644 --- a/dotfiles/shell/aliases +++ b/dotfiles/shell/aliases @@ -59,13 +59,19 @@ hello() { *) sudo pacman -Syu esac + echo "Pulling from SetupCockpit" cd ~/SetupCockpit && git pull + echo "Pulling from Keepass" cd ~/Keepass && git pull + echo "Pulling from TSSR" cd ~/Lessons/TSSR && git pull } bye() { + echo "Pushing to SetupCockpit" cd ~/SetupCockpit && git push + echo "Pushing to Keepas" cd ~/Keepass && git push + echo "Pushing to TSSR" cd ~/Lessons/TSSR && git push }