forked from mirrors/jj
cli: describe what workspaces are in jj workspace
help
This commit is contained in:
parent
4b84d3874a
commit
4d2402831a
1 changed files with 8 additions and 0 deletions
|
@ -1023,6 +1023,14 @@ struct BackoutArgs {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Commands for working with workspaces
|
/// Commands for working with workspaces
|
||||||
|
///
|
||||||
|
/// Workspaces let you add additional working copies attached to the same repo.
|
||||||
|
/// A common use case is so you can run a slow build or test in one workspace
|
||||||
|
/// while you're continuing to write code in another workspace.
|
||||||
|
///
|
||||||
|
/// Each workspace has its own working-copy commit. When you have more than one
|
||||||
|
/// workspace attached to a repo, they are indicated by `@<workspace name>` in
|
||||||
|
/// `jj log`.
|
||||||
#[derive(Subcommand, Clone, Debug)]
|
#[derive(Subcommand, Clone, Debug)]
|
||||||
enum WorkspaceCommands {
|
enum WorkspaceCommands {
|
||||||
Add(WorkspaceAddArgs),
|
Add(WorkspaceAddArgs),
|
||||||
|
|
Loading…
Reference in a new issue