agents-course-v2 / push_both.sh
D3MI4N's picture
Test dual push
7875b50
raw
history blame contribute delete
230 Bytes
#!/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!"