heddle-cli 0.4.0

An AI-native version control system
Documentation
// SPDX-License-Identifier: Apache-2.0
//! Remote command definitions.

use clap::Subcommand;

#[derive(Subcommand, Clone)]
pub enum RemoteCommands {
    /// List configured remotes.
    List,

    /// Add a remote.
    Add {
        /// Remote name.
        name: String,
        /// Remote URL, hosted endpoint, or local bare Git path.
        url: String,
    },

    /// Remove a remote.
    Remove {
        /// Remote name.
        name: String,
    },

    /// Set the default remote for pull, push, fetch, and Git-overlay bridge operations.
    SetDefault {
        /// Existing remote name.
        name: String,
    },

    /// Show remote details.
    Show {
        /// Remote name.
        name: String,
    },
}