Add even shorter aliases for sending and pushing clones, and also allow them to handle Git repos!

This commit is contained in:
2026-04-11 09:31:45 -07:00
parent a76cb8b5ec
commit 391b0a0b09

View File

@@ -117,6 +117,22 @@ function today { date "+%Y%m%d"; }
function log { echo -e "$1"; } function log { echo -e "$1"; }
function blog { echo -e "\n\n$1\n\n"; } function blog { echo -e "\n\n$1\n\n"; }
function pull {
if [[ -d .git ]]; then
git pull --recurse-submodules
else
pull-clone
fi
}
function push {
if [[ -d .git ]]; then
git push && load-stage && load-prod
else
send-master
fi
}
# Enhance Bin Scripts # # Enhance Bin Scripts #
# MASTER and CLONE folders. # MASTER and CLONE folders.