Spaces:
Sleeping
Sleeping
Test dual push
Browse files- push_both.sh +10 -0
push_both.sh
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
# Script to push changes to both HuggingFace and GitHub
|
| 3 |
+
|
| 4 |
+
echo "π Pushing to HuggingFace Space..."
|
| 5 |
+
git push origin main
|
| 6 |
+
|
| 7 |
+
echo "π Pushing to GitHub..."
|
| 8 |
+
git push github main
|
| 9 |
+
|
| 10 |
+
echo "β
Pushed to both repositories!"
|