D3MI4N commited on
Commit
7875b50
Β·
1 Parent(s): b36ff59

Test dual push

Browse files
Files changed (1) hide show
  1. 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!"