MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / Insert

Class Insert

atomic-cli/src/commands/insert.rs:32–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30/// - Cherry-pick specific changes
31#[derive(Debug, Args)]
32pub struct Insert {
33 #[command(subcommand)]
34 command: Option<InsertSubcommand>,
35
36 /// Hash of the change to insert (when not using subcommands).
37 #[arg(value_name = "CHANGE")]
38 change: Option<String>,
39
40 /// View to insert the change into (default: current view).
41 #[arg(long)]
42 view: Option<String>,
43
44 /// Insert dependencies automatically.
45 #[arg(long, default_value = "true")]
46 deps: bool,
47
48 /// Allow conflicts during insert.
49 #[arg(long)]
50 allow_conflicts: bool,
51
52 /// Repository path.
53 #[arg(short = 'R', long)]
54 repository: Option<String>,
55}
56
57/// Insert subcommands for cross-view operations.
58#[derive(Debug, Subcommand)]

Callers 1

diff_tokensFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected