Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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