Spaces:
Sleeping
Sleeping
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!"
|