sampling-quantization / check_status.sh
AKA Math
initial commit
2d190aa
Raw
History Blame Contribute Delete
599 Bytes
#!/bin/bash
# Quick status check script for Hugging Face Space
set -e
echo "πŸ” Hugging Face Space Status Check"
echo "===================================="
echo ""
# Check if git remote exists
if ! git remote | grep -q "hf"; then
echo "❌ No 'hf' remote found. Run deploy.sh first."
exit 1
fi
# Get the remote URL
HF_URL=$(git remote get-url hf)
echo "πŸ“ Space URL: $HF_URL"
echo ""
# Check git status
echo "πŸ“Š Local Repository Status:"
git status --short
echo ""
echo "πŸ“ Recent Commits:"
git log --oneline -5
echo ""
echo "🌐 To check your Space online, visit: $HF_URL"