chore(git): update git-push skill and script with SSH info

This commit is contained in:
Zuev
2026-02-19 20:42:25 +03:00
parent ed8668c599
commit e9c08b4c75
2 changed files with 13 additions and 4 deletions

View File

@@ -11,7 +11,13 @@ fi
echo "🚀 Starting Local Push Sequence..."
# Выполняем цепочку команд локально
# Проверка на наличие изменений
if git diff-index --quiet HEAD --; then
echo " No changes to commit. Everything is up to date."
exit 0
fi
# Выполняем цепочку команд локально (SSH URL: ssh://git@gitea.zuev.company:2222/Zuev/magistr.git)
git add . && \
git commit -m "$COMMIT_MSG" && \
git push origin main