melissalau commited on
Commit
be9a2ed
·
1 Parent(s): 658964f

Re-add config file

Browse files
Files changed (3) hide show
  1. README.md +0 -0
  2. push_all.bat +7 -0
  3. push_all.sh +9 -0
README.md CHANGED
Binary files a/README.md and b/README.md differ
 
push_all.bat ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ @echo off
2
+ echo Pushing to Hugging Face...
3
+ git push origin main
4
+ echo Pushing to GitHub...
5
+ git push github main
6
+ echo Push to both remotes complete.
7
+ pause
push_all.sh ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+
3
+ echo "Pushing to Hugging Face..."
4
+ git push origin main
5
+
6
+ echo "Pushing to GitHub..."
7
+ git push github main
8
+
9
+ echo "Push to both remotes complete."