FocusFlow Assistant commited on
Commit ·
d5d244d
1
Parent(s): de2dd98
add files
Browse files- dummy.dev +2 -0
- psg-gh-push-workflow.sh +11 -0
dummy.dev
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
If you are reading this, the deployment failed as you need manual intervention here!
|
| 2 |
+
Try Running: git push --force origin main
|
psg-gh-push-workflow.sh
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
# Push wrapper tool for FocusFlow / hack Directory
|
| 3 |
+
cd /home/siva/Desktop/psg/hack
|
| 4 |
+
|
| 5 |
+
echo "Ensuring remote is set correctly to https://github.com/suwethadevakiruba3012-wq/Free.git"
|
| 6 |
+
git remote set-url origin https://github.com/suwethadevakiruba3012-wq/Free.git 2>/dev/null || git remote add origin https://github.com/suwethadevakiruba3012-wq/Free.git
|
| 7 |
+
|
| 8 |
+
echo "Status:"
|
| 9 |
+
git status
|
| 10 |
+
echo "Pushing context! Make sure your password or Personal Access Token (PAT) is provided"
|
| 11 |
+
git push -u origin main
|