#!/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"