Togmal-demo / setup_github_remote.sh
HeTalksInMaths
Port chat integration changes onto main (rebase strategy)
5fd9547
#!/bin/bash
echo "════════════════════════════════════════════════════"
echo " GitHub Remote Setup for Togmal-demo"
echo "════════════════════════════════════════════════════"
echo ""
cd /Users/hetalksinmaths/togmal/Togmal-demo
echo "Current directory: $(pwd)"
echo ""
# Check current remotes
echo "πŸ“‹ Current remotes:"
git remote -v
echo ""
# Remove old github remote if exists
git remote remove github 2>/dev/null
echo "πŸ”§ Adding GitHub remote for togmal-mcp..."
git remote add github https://github.com/HeTalksInMaths/togmal-mcp.git
echo ""
echo "βœ… Updated remotes:"
git remote -v
echo ""
echo "════════════════════════════════════════════════════"
echo " Ready to Push!"
echo "════════════════════════════════════════════════════"
echo ""
echo "Now you can push with:"
echo " git push github main"
echo ""
echo "Or push to both:"
echo " git push origin main && git push github main"
echo ""