File size: 230 Bytes
7875b50
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# Script to push changes to both HuggingFace and GitHub

echo "πŸš€ Pushing to HuggingFace Space..."
git push origin main

echo "πŸš€ Pushing to GitHub..."
git push github main

echo "βœ… Pushed to both repositories!"