Trae Assistant
feat: add persistence, export, and real evaluation
f609a45
raw
history blame contribute delete
535 Bytes
#!/bin/bash
set -e
echo "Adding remote..."
git remote add origin hf-026:spaces/duqing026/prompt-foundry-agent || echo "Remote already exists"
echo "Backing up README..."
cp README.md README.md.bak
echo "Removing README for pull..."
git rm README.md
git commit -m "temp remove readme"
echo "Pulling from origin..."
git pull origin main --allow-unrelated-histories --no-rebase
echo "Restoring README..."
mv README.md.bak README.md
git add README.md
git commit -m "restore readme"
echo "Pushing to origin..."
git push -u origin main