# Git-Script
```bash
echo "================================================"
echo "// ⬇️"
git remote -v
echo "// "
echo "================================================"
#!/bin/bash
# filepath: sync-repos.sh
echo "================================================"
# Push to first remote (origin)
git push origin main
echo "================================================"
# Push to second remote
git push second-remote main
echo "================================================"
# Pull from origin
git pull origin main
echo "================================================"
# Pull from second remote
git pull second-remote main
echo "================================================"
echo "Repositories synchronized successfully!"
echo "================================================"
```