Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/plumbing/options/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ pub enum Subcommands {
/// Subcommands for creating worktree archives
#[cfg(feature = "gitoxide-core-tools-archive")]
Archive(archive::Platform),
/// Remove untracked files from the working tree
#[cfg(feature = "gitoxide-core-tools-clean")]
Clean(clean::Command),
/// Subcommands for interacting with commit-graph files
Expand Down Expand Up @@ -111,6 +112,7 @@ pub enum Subcommands {
/// Fetch data from remotes and store it in the repository
#[cfg(feature = "gitoxide-core-blocking-client")]
Fetch(fetch::Platform),
/// Clone a repository into a new directory
#[cfg(feature = "gitoxide-core-blocking-client")]
Clone(clone::Platform),
/// Interact with the mailmap.
Expand All @@ -125,6 +127,7 @@ pub enum Subcommands {
/// Interact with the exclude files like .gitignore.
#[clap(subcommand)]
Exclude(exclude::Subcommands),
/// Interact with a worktree index like .git/index.
#[clap(subcommand)]
Index(index::Subcommands),
/// Interact with submodules.
Expand Down
Loading