From 3b23e8c7f9f3028ee933aefde378cc7bfc6eb2c4 Mon Sep 17 00:00:00 2001 From: sij Date: Sun, 23 Jun 2024 13:51:54 -0700 Subject: [PATCH] Delete up --- up | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 up diff --git a/up b/up deleted file mode 100755 index 8825538..0000000 --- a/up +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -# Navigate to your project directory -cd ~/workshop/sijapi - -# Pull the latest changes from the repository -echo "Pulling from main branch..." -git pull origin main - -# Add changes to the Git index (staging area) -echo "Adding all changes..." -git add . - -# Commit changes -echo "Committing changes..." -git commit -m "Auto-update: $(date)" - -# Push changes to the remote repository -echo "Pushing all changes..." -git push origin main - -echo "Update complete!" -