Remote Operations
Commands for working with remote repositories.
Commands
- clone - Clone a remote repository locally
- remote - Add, remove, and list remote connections
- fetch - Download objects from remote without merging
- push - Push commits to remote
- pull - Fetch and merge from remote
Typical Workflow
# Push to remote
mediagit push origin main
# Pull from remote
mediagit pull origin main