AI / GitHub Copilot CLI Fundamentals Interview Questions
What is remote control in GitHub Copilot CLI and how does it work?
Remote control allows you to monitor and interact with a running Copilot CLI session from GitHub.com or GitHub Mobile, even after you have stepped away from your terminal.
# Enable remote control when starting a session copilot --remote # Or connect to an existing task by ID copilot --remote --resume TASK-ID # Remote export (share output remotely without full session control) copilot --remote-export # Connect to a specific remote session copilot --connect
Remote control use cases:
- Start a long-running task on your laptop, walk away, monitor progress on your phone
- Respond to Copilot's questions or approve steps from GitHub.com without returning to the terminal
- Hand off a session to a colleague who can continue it from GitHub.com
- Resume a remote task locally - works even if the task was originally created outside a Git repository
Requirements: the remote sessions feature must be available on your account. The --remote, --no-remote, --remote-export, --no-remote-export, and --connect options all require this feature.
More Related questions...