#!/bin/bash # Path to your local repository REPO_PATH="/content/outputs" while true do # Navigate to the repository cd "$REPO_PATH" || exit # Stage your folder git add Qwen-0.5B-GRPO/ # Commit changes with a fixed message git commit -m 'add checkpoints' # Push to remote git push # Sleep for 600 seconds (10 minutes) sleep 600 done