From 058249cc577a31538867cb0a0283eb74728a968d Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Thu, 5 Sep 2024 14:38:56 +0900 Subject: [PATCH] cli: update docs URLs to point to https://martinvonz.github.io/jj/latest/ --- cli/src/cli_util.rs | 6 +-- cli/src/command_error.rs | 2 +- cli/src/commands/branch/delete.rs | 2 +- cli/src/commands/branch/forget.rs | 2 +- cli/src/commands/branch/list.rs | 6 +-- cli/src/commands/branch/mod.rs | 2 +- cli/src/commands/branch/move.rs | 2 +- cli/src/commands/branch/track.rs | 2 +- cli/src/commands/branch/untrack.rs | 2 +- cli/src/commands/checkout.rs | 2 +- cli/src/commands/config/list.rs | 2 +- cli/src/commands/config/mod.rs | 2 +- cli/src/commands/evolog.rs | 2 +- cli/src/commands/git/mod.rs | 2 +- cli/src/commands/log.rs | 2 +- cli/src/commands/new.rs | 2 +- cli/src/commands/operation/log.rs | 2 +- cli/src/commands/operation/mod.rs | 2 +- cli/src/commands/show.rs | 2 +- cli/src/commands/status.rs | 2 +- cli/src/commands/tag.rs | 4 +- cli/src/commands/workspace/update_stale.rs | 2 +- cli/src/config-schema.json | 8 ++-- cli/src/config.rs | 2 +- cli/tests/cli-reference@.md.snap | 46 +++++++++++----------- cli/tests/test_alias.rs | 2 +- cli/tests/test_config_command.rs | 10 ++--- cli/tests/test_fix_command.rs | 10 ++--- cli/tests/test_git_clone.rs | 2 +- cli/tests/test_global_opts.rs | 2 +- cli/tests/test_immutable_commits.rs | 2 +- cli/tests/test_log_command.rs | 2 +- cli/tests/test_revset_output.rs | 2 +- cli/tests/test_util_command.rs | 2 +- cli/tests/test_workspaces.rs | 8 ++-- 35 files changed, 76 insertions(+), 76 deletions(-) diff --git a/cli/src/cli_util.rs b/cli/src/cli_util.rs index b52f5c37b..4122a024f 100644 --- a/cli/src/cli_util.rs +++ b/cli/src/cli_util.rs @@ -1339,7 +1339,7 @@ impl WorkspaceCommandHelper { short_operation_hash(&old_op_id) ), "Run `jj workspace update-stale` to update it. -See https://github.com/martinvonz/jj/blob/main/docs/working-copy.md#stale-working-copy \ +See https://martinvonz.github.io/jj/latest/working-copy/#stale-working-copy \ for more information.", )); } @@ -1355,7 +1355,7 @@ See https://github.com/martinvonz/jj/blob/main/docs/working-copy.md#stale-workin return Err(user_error_with_hint( "Could not read working copy's operation.", "Run `jj workspace update-stale` to recover. -See https://github.com/martinvonz/jj/blob/main/docs/working-copy.md#stale-working-copy \ +See https://martinvonz.github.io/jj/latest/working-copy/#stale-working-copy \ for more information.", )); } @@ -2492,7 +2492,7 @@ impl fmt::Display for RemoteBranchNamePattern { /// Jujutsu (An experimental VCS) /// -/// To get started, see the tutorial at https://github.com/martinvonz/jj/blob/main/docs/tutorial.md. +/// To get started, see the tutorial at https://martinvonz.github.io/jj/latest/tutorial/. #[allow(rustdoc::bare_urls)] #[derive(clap::Parser, Clone, Debug)] #[command(name = "jj")] diff --git a/cli/src/command_error.rs b/cli/src/command_error.rs index d0e60aa4d..8993eb2f1 100644 --- a/cli/src/command_error.rs +++ b/cli/src/command_error.rs @@ -725,7 +725,7 @@ fn try_handle_command_result( print_error(ui, "Config error: ", err, hints)?; writeln!( ui.stderr_formatter().labeled("hint"), - "For help, see https://github.com/martinvonz/jj/blob/main/docs/config.md." + "For help, see https://martinvonz.github.io/jj/latest/config/." )?; Ok(ExitCode::from(1)) } diff --git a/cli/src/commands/branch/delete.rs b/cli/src/commands/branch/delete.rs index def5bff14..75d98ffa6 100644 --- a/cli/src/commands/branch/delete.rs +++ b/cli/src/commands/branch/delete.rs @@ -29,7 +29,7 @@ pub struct BranchDeleteArgs { /// /// By default, the specified name matches exactly. Use `glob:` prefix to /// select branches by wildcard pattern. For details, see - /// https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + /// https://martinvonz.github.io/jj/latest/revsets/#string-patterns. #[arg(required = true, value_parser = StringPattern::parse)] names: Vec, } diff --git a/cli/src/commands/branch/forget.rs b/cli/src/commands/branch/forget.rs index a27b35a32..32b4a9f9b 100644 --- a/cli/src/commands/branch/forget.rs +++ b/cli/src/commands/branch/forget.rs @@ -35,7 +35,7 @@ pub struct BranchForgetArgs { /// /// By default, the specified name matches exactly. Use `glob:` prefix to /// select branches by wildcard pattern. For details, see - /// https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + /// https://martinvonz.github.io/jj/latest/revsets/#string-patterns. #[arg(required = true, value_parser = StringPattern::parse)] names: Vec, } diff --git a/cli/src/commands/branch/list.rs b/cli/src/commands/branch/list.rs index 786ffca00..754dac1e2 100644 --- a/cli/src/commands/branch/list.rs +++ b/cli/src/commands/branch/list.rs @@ -34,7 +34,7 @@ use crate::ui::Ui; /// "+". /// /// For information about branches, see -/// https://github.com/martinvonz/jj/blob/main/docs/branches.md. +/// https://martinvonz.github.io/jj/latest/branches/. #[derive(clap::Args, Clone, Debug)] pub struct BranchListArgs { /// Show all tracking and non-tracking remote branches including the ones @@ -55,7 +55,7 @@ pub struct BranchListArgs { /// /// By default, the specified name matches exactly. Use `glob:` prefix to /// select branches by wildcard pattern. For details, see - /// https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + /// https://martinvonz.github.io/jj/latest/revsets/#string-patterns. #[arg(value_parser = StringPattern::parse)] names: Vec, @@ -70,7 +70,7 @@ pub struct BranchListArgs { /// /// All 0-argument methods of the `RefName` type are available as keywords. /// - /// For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + /// For the syntax, see https://martinvonz.github.io/jj/latest/templates/ #[arg(long, short = 'T')] template: Option, } diff --git a/cli/src/commands/branch/mod.rs b/cli/src/commands/branch/mod.rs index 636f787b0..365ede614 100644 --- a/cli/src/commands/branch/mod.rs +++ b/cli/src/commands/branch/mod.rs @@ -59,7 +59,7 @@ use crate::ui::Ui; /// Manage branches /// /// For information about branches, see -/// https://github.com/martinvonz/jj/blob/main/docs/branches.md. +/// https://martinvonz.github.io/jj/latest/branches/. #[derive(clap::Subcommand, Clone, Debug)] pub enum BranchCommand { #[command(visible_alias("c"))] diff --git a/cli/src/commands/branch/move.rs b/cli/src/commands/branch/move.rs index 9f5443e5a..9c015804b 100644 --- a/cli/src/commands/branch/move.rs +++ b/cli/src/commands/branch/move.rs @@ -56,7 +56,7 @@ pub struct BranchMoveArgs { /// /// By default, the specified name matches exactly. Use `glob:` prefix to /// select branches by wildcard pattern. For details, see - /// https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + /// https://martinvonz.github.io/jj/latest/revsets/#string-patterns. #[arg(group = "source", value_parser = StringPattern::parse)] names: Vec, } diff --git a/cli/src/commands/branch/track.rs b/cli/src/commands/branch/track.rs index a93196429..eff4a888d 100644 --- a/cli/src/commands/branch/track.rs +++ b/cli/src/commands/branch/track.rs @@ -35,7 +35,7 @@ pub struct BranchTrackArgs { /// /// By default, the specified name matches exactly. Use `glob:` prefix to /// select branches by wildcard pattern. For details, see - /// https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + /// https://martinvonz.github.io/jj/latest/revsets/#string-patterns. /// /// Examples: branch@remote, glob:main@*, glob:jjfan-*@upstream #[arg(required = true, value_name = "BRANCH@REMOTE")] diff --git a/cli/src/commands/branch/untrack.rs b/cli/src/commands/branch/untrack.rs index d722b2dee..37cc9cf2d 100644 --- a/cli/src/commands/branch/untrack.rs +++ b/cli/src/commands/branch/untrack.rs @@ -31,7 +31,7 @@ pub struct BranchUntrackArgs { /// /// By default, the specified name matches exactly. Use `glob:` prefix to /// select branches by wildcard pattern. For details, see - /// https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + /// https://martinvonz.github.io/jj/latest/revsets/#string-patterns. /// /// Examples: branch@remote, glob:main@*, glob:jjfan-*@upstream #[arg(required = true, value_name = "BRANCH@REMOTE")] diff --git a/cli/src/commands/checkout.rs b/cli/src/commands/checkout.rs index 094cf0579..d2e5e0487 100644 --- a/cli/src/commands/checkout.rs +++ b/cli/src/commands/checkout.rs @@ -25,7 +25,7 @@ use crate::ui::Ui; /// `jj new`) /// /// For more information, see -/// https://github.com/martinvonz/jj/blob/main/docs/working-copy.md. +/// https://martinvonz.github.io/jj/latest/working-copy/. #[derive(clap::Args, Clone, Debug)] pub(crate) struct CheckoutArgs { /// The revision to update to diff --git a/cli/src/commands/config/list.rs b/cli/src/commands/config/list.rs index 19e900e1b..8308171af 100644 --- a/cli/src/commands/config/list.rs +++ b/cli/src/commands/config/list.rs @@ -49,7 +49,7 @@ pub struct ConfigListArgs { /// * `value: String`: Serialized value in TOML syntax. /// * `overridden: Boolean`: True if the value is shadowed by other. /// - /// For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + /// For the syntax, see https://martinvonz.github.io/jj/latest/templates/ #[arg(long, short = 'T', verbatim_doc_comment)] template: Option, } diff --git a/cli/src/commands/config/mod.rs b/cli/src/commands/config/mod.rs index 6bab134a7..c6c1f624e 100644 --- a/cli/src/commands/config/mod.rs +++ b/cli/src/commands/config/mod.rs @@ -69,7 +69,7 @@ impl ConfigLevelArgs { /// environment variables. /// /// For file locations, supported config options, and other details about jj -/// config, see https://github.com/martinvonz/jj/blob/main/docs/config.md. +/// config, see https://martinvonz.github.io/jj/latest/config/. #[derive(clap::Subcommand, Clone, Debug)] pub(crate) enum ConfigCommand { #[command(visible_alias("e"))] diff --git a/cli/src/commands/evolog.rs b/cli/src/commands/evolog.rs index 4697e6e77..a5e3e7908 100644 --- a/cli/src/commands/evolog.rs +++ b/cli/src/commands/evolog.rs @@ -57,7 +57,7 @@ pub(crate) struct EvologArgs { no_graph: bool, /// Render each revision using the given template /// - /// For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + /// For the syntax, see https://martinvonz.github.io/jj/latest/templates/ #[arg(long, short = 'T')] template: Option, /// Show patch compared to the previous version of this change diff --git a/cli/src/commands/git/mod.rs b/cli/src/commands/git/mod.rs index 6fa82a9b4..2a418751b 100644 --- a/cli/src/commands/git/mod.rs +++ b/cli/src/commands/git/mod.rs @@ -50,7 +50,7 @@ use crate::ui::Ui; /// Commands for working with Git remotes and the underlying Git repo /// /// For a comparison with Git, including a table of commands, see -/// https://github.com/martinvonz/jj/blob/main/docs/git-comparison.md. +/// https://martinvonz.github.io/jj/latest/git-comparison/. #[derive(Subcommand, Clone, Debug)] pub enum GitCommand { Clone(GitCloneArgs), diff --git a/cli/src/commands/log.rs b/cli/src/commands/log.rs index 874f192a4..735a198ba 100644 --- a/cli/src/commands/log.rs +++ b/cli/src/commands/log.rs @@ -72,7 +72,7 @@ pub(crate) struct LogArgs { no_graph: bool, /// Render each revision using the given template /// - /// For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + /// For the syntax, see https://martinvonz.github.io/jj/latest/templates/ #[arg(long, short = 'T')] template: Option, /// Show patch diff --git a/cli/src/commands/new.rs b/cli/src/commands/new.rs index 3408ebf38..ccd62aaf1 100644 --- a/cli/src/commands/new.rs +++ b/cli/src/commands/new.rs @@ -45,7 +45,7 @@ use crate::ui::Ui; /// `main` branch and the working copy as parents. /// /// For more information, see -/// https://github.com/martinvonz/jj/blob/main/docs/working-copy.md. +/// https://martinvonz.github.io/jj/latest/working-copy/. #[derive(clap::Args, Clone, Debug)] pub(crate) struct NewArgs { /// Parent(s) of the new change diff --git a/cli/src/commands/operation/log.rs b/cli/src/commands/operation/log.rs index 7300a485e..183af0398 100644 --- a/cli/src/commands/operation/log.rs +++ b/cli/src/commands/operation/log.rs @@ -48,7 +48,7 @@ pub struct OperationLogArgs { no_graph: bool, /// Render each operation using the given template /// - /// For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + /// For the syntax, see https://martinvonz.github.io/jj/latest/templates/ #[arg(long, short = 'T')] template: Option, } diff --git a/cli/src/commands/operation/mod.rs b/cli/src/commands/operation/mod.rs index 5c72fea51..6c0fc204d 100644 --- a/cli/src/commands/operation/mod.rs +++ b/cli/src/commands/operation/mod.rs @@ -40,7 +40,7 @@ use crate::ui::Ui; /// Commands for working with the operation log /// /// For information about the operation log, see -/// https://github.com/martinvonz/jj/blob/main/docs/operation-log.md. +/// https://martinvonz.github.io/jj/latest/operation-log/. #[derive(Subcommand, Clone, Debug)] pub enum OperationCommand { Abandon(OperationAbandonArgs), diff --git a/cli/src/commands/show.rs b/cli/src/commands/show.rs index 9dfb0f073..df0783ecf 100644 --- a/cli/src/commands/show.rs +++ b/cli/src/commands/show.rs @@ -32,7 +32,7 @@ pub(crate) struct ShowArgs { unused_revision: bool, /// Render a revision using the given template /// - /// For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + /// For the syntax, see https://martinvonz.github.io/jj/latest/templates/ #[arg(long, short = 'T')] template: Option, #[command(flatten)] diff --git a/cli/src/commands/status.rs b/cli/src/commands/status.rs index c367474a8..a1266248a 100644 --- a/cli/src/commands/status.rs +++ b/cli/src/commands/status.rs @@ -34,7 +34,7 @@ use crate::ui::Ui; /// * The working copy commit and its (first) parent, and a summary of the /// changes between them /// -/// * Conflicted branches (see https://github.com/martinvonz/jj/blob/main/docs/branches.md) +/// * Conflicted branches (see https://martinvonz.github.io/jj/latest/branches/) #[derive(clap::Args, Clone, Debug)] #[command(visible_alias = "st")] pub(crate) struct StatusArgs { diff --git a/cli/src/commands/tag.rs b/cli/src/commands/tag.rs index fe0bae7a2..9f569584e 100644 --- a/cli/src/commands/tag.rs +++ b/cli/src/commands/tag.rs @@ -34,14 +34,14 @@ pub struct TagListArgs { /// /// By default, the specified name matches exactly. Use `glob:` prefix to /// select tags by wildcard pattern. For details, see - /// https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + /// https://martinvonz.github.io/jj/latest/revsets/#string-patterns. #[arg(value_parser = StringPattern::parse)] pub names: Vec, /// Render each tag using the given template /// /// All 0-argument methods of the `RefName` type are available as keywords. /// - /// For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + /// For the syntax, see https://martinvonz.github.io/jj/latest/templates/ #[arg(long, short = 'T')] template: Option, } diff --git a/cli/src/commands/workspace/update_stale.rs b/cli/src/commands/workspace/update_stale.rs index 6f13d5dda..9c245bfb1 100644 --- a/cli/src/commands/workspace/update_stale.rs +++ b/cli/src/commands/workspace/update_stale.rs @@ -35,7 +35,7 @@ use crate::ui::Ui; /// Update a workspace that has become stale /// /// For information about stale working copies, see -/// https://github.com/martinvonz/jj/blob/main/docs/working-copy.md. +/// https://martinvonz.github.io/jj/latest/working-copy/. #[derive(clap::Args, Clone, Debug)] pub struct WorkspaceUpdateStaleArgs {} diff --git a/cli/src/config-schema.json b/cli/src/config-schema.json index 180fd162d..7b4658e42 100644 --- a/cli/src/config-schema.json +++ b/cli/src/config-schema.json @@ -2,7 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema", "title": "Jujutsu config", "type": "object", - "description": "User configuration for Jujutsu VCS. See https://github.com/martinvonz/jj/blob/main/docs/config.md for details", + "description": "User configuration for Jujutsu VCS. See https://martinvonz.github.io/jj/latest/config/ for details", "properties": { "user": { "type": "object", @@ -125,7 +125,7 @@ "description": "Options for rendering revision graphs from jj log etc", "properties": { "style": { - "description": "Style of connectors/markings used to render the graph. See https://github.com/martinvonz/jj/blob/main/docs/config.md#graph-style", + "description": "Style of connectors/markings used to render the graph. See https://martinvonz.github.io/jj/latest/config/#graph-style", "enum": [ "curved", "square", @@ -299,7 +299,7 @@ "properties": { "auto-local-branch": { "type": "boolean", - "description": "Whether jj creates a local branch with the same name when it imports a remote-tracking branch from git. See https://github.com/martinvonz/jj/blob/main/docs/config.md#automatic-local-branch-creation", + "description": "Whether jj creates a local branch with the same name when it imports a remote-tracking branch from git. See https://martinvonz.github.io/jj/latest/config/#automatic-local-branch-creation", "default": false }, "abandon-unreachable-commits": { @@ -371,7 +371,7 @@ }, "merge-tool-edits-conflict-markers": { "type": "boolean", - "description": "Whether to populate the output file with conflict markers before starting the merge tool. See https://github.com/martinvonz/jj/blob/main/docs/config.md#editing-conflict-markers-with-a-tool-or-a-text-editor", + "description": "Whether to populate the output file with conflict markers before starting the merge tool. See https://martinvonz.github.io/jj/latest/config/#editing-conflict-markers-with-a-tool-or-a-text-editor", "default": false } } diff --git a/cli/src/config.rs b/cli/src/config.rs index eebcaac99..c22871dc2 100644 --- a/cli/src/config.rs +++ b/cli/src/config.rs @@ -210,7 +210,7 @@ pub struct AnnotatedValue { /// Sources from the lowest precedence: /// 1. Default /// 2. Base environment variables -/// 3. [User config](https://github.com/martinvonz/jj/blob/main/docs/config.md#configuration) +/// 3. [User config](https://martinvonz.github.io/jj/latest/config/) /// 4. Repo config `.jj/repo/config.toml` /// 5. TODO: Workspace config `.jj/config.toml` /// 6. Override environment variables diff --git a/cli/tests/cli-reference@.md.snap b/cli/tests/cli-reference@.md.snap index bf3f53b97..507e45310 100644 --- a/cli/tests/cli-reference@.md.snap +++ b/cli/tests/cli-reference@.md.snap @@ -104,7 +104,7 @@ This document contains the help content for the `jj` command-line program. Jujutsu (An experimental VCS) -To get started, see the tutorial at https://github.com/martinvonz/jj/blob/main/docs/tutorial.md. +To get started, see the tutorial at https://martinvonz.github.io/jj/latest/tutorial/. **Usage:** `jj [OPTIONS] [COMMAND]` @@ -229,7 +229,7 @@ Apply the reverse of a revision on top of another revision Manage branches -For information about branches, see https://github.com/martinvonz/jj/blob/main/docs/branches.md. +For information about branches, see https://martinvonz.github.io/jj/latest/branches/. **Usage:** `jj branch ` @@ -273,7 +273,7 @@ Delete an existing branch and propagate the deletion to remotes on the next push * `` — The branches to delete - By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://martinvonz.github.io/jj/latest/revsets/#string-patterns. @@ -289,7 +289,7 @@ A forgotten branch will not impact remotes on future pushes. It will be recreate * `` — The branches to forget - By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://martinvonz.github.io/jj/latest/revsets/#string-patterns. @@ -299,7 +299,7 @@ List branches and their targets By default, a tracking remote branch will be included only if its target is different from the local target. A non-tracking remote branch won't be listed. For a conflicted branch (both local and remote), old target revisions are preceded by a "-" and new target revisions are preceded by a "+". -For information about branches, see https://github.com/martinvonz/jj/blob/main/docs/branches.md. +For information about branches, see https://martinvonz.github.io/jj/latest/branches/. **Usage:** `jj branch list [OPTIONS] [NAMES]...` @@ -307,7 +307,7 @@ For information about branches, see https://github.com/martinvonz/jj/blob/main/d * `` — Show branches whose local name matches - By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://martinvonz.github.io/jj/latest/revsets/#string-patterns. ###### **Options:** @@ -321,7 +321,7 @@ For information about branches, see https://github.com/martinvonz/jj/blob/main/d All 0-argument methods of the `RefName` type are available as keywords. - For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + For the syntax, see https://martinvonz.github.io/jj/latest/templates/ @@ -343,7 +343,7 @@ $ jj branch move --from 'heads(::@- & branches())' --to @- * `` — Move branches matching the given name patterns - By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://martinvonz.github.io/jj/latest/revsets/#string-patterns. ###### **Options:** @@ -399,7 +399,7 @@ A tracking remote branch will be imported as a local branch of the same name. Ch * `` — Remote branches to track - By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://martinvonz.github.io/jj/latest/revsets/#string-patterns. Examples: branch@remote, glob:main@*, glob:jjfan-*@upstream @@ -417,7 +417,7 @@ A non-tracking remote branch is just a pointer to the last-fetched remote branch * `` — Remote branches to untrack - By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://github.com/martinvonz/jj/blob/main/docs/revsets.md#string-patterns. + By default, the specified name matches exactly. Use `glob:` prefix to select branches by wildcard pattern. For details, see https://martinvonz.github.io/jj/latest/revsets/#string-patterns. Examples: branch@remote, glob:main@*, glob:jjfan-*@upstream @@ -454,7 +454,7 @@ Manage config options Operates on jj configuration, which comes from the config file and environment variables. -For file locations, supported config options, and other details about jj config, see https://github.com/martinvonz/jj/blob/main/docs/config.md. +For file locations, supported config options, and other details about jj config, see https://martinvonz.github.io/jj/latest/config/. **Usage:** `jj config ` @@ -527,7 +527,7 @@ List variables set in config file, along with their values * `value: String`: Serialized value in TOML syntax. * `overridden: Boolean`: True if the value is shadowed by other. - For the syntax, see https://github.com/martinvonz/jj/blob/main/docs/templates.md + For the syntax, see https://martinvonz.github.io/jj/latest/templates/ @@ -709,7 +709,7 @@ Lists the previous commits which a change has pointed to. The current commit of * `--no-graph` — Don't show the graph, show a flat list of revisions * `-T`, `--template