mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-24 15:18:53 +00:00
bookmark: fix broken docs URLs that lead to 404 errors
Some checks are pending
binaries / Build binary artifacts (linux-aarch64-gnu, ubuntu-24.04, aarch64-unknown-linux-gnu) (push) Waiting to run
binaries / Build binary artifacts (linux-aarch64-musl, ubuntu-24.04, aarch64-unknown-linux-musl) (push) Waiting to run
binaries / Build binary artifacts (linux-x86_64-gnu, ubuntu-24.04, x86_64-unknown-linux-gnu) (push) Waiting to run
binaries / Build binary artifacts (linux-x86_64-musl, ubuntu-24.04, x86_64-unknown-linux-musl) (push) Waiting to run
binaries / Build binary artifacts (macos-aarch64, macos-14, aarch64-apple-darwin) (push) Waiting to run
binaries / Build binary artifacts (macos-x86_64, macos-13, x86_64-apple-darwin) (push) Waiting to run
binaries / Build binary artifacts (win-x86_64, windows-2022, x86_64-pc-windows-msvc) (push) Waiting to run
nix / flake check (macos-14) (push) Waiting to run
nix / flake check (ubuntu-latest) (push) Waiting to run
build / build (, macos-13) (push) Waiting to run
build / build (, macos-14) (push) Waiting to run
build / build (, ubuntu-latest) (push) Waiting to run
build / build (, windows-latest) (push) Waiting to run
build / build (--all-features, ubuntu-latest) (push) Waiting to run
build / Build jj-lib without Git support (push) Waiting to run
build / Check protos (push) Waiting to run
build / Check formatting (push) Waiting to run
build / Check that MkDocs can build the docs (push) Waiting to run
build / Check that MkDocs can build the docs with Poetry 1.8 (push) Waiting to run
build / cargo-deny (advisories) (push) Waiting to run
build / cargo-deny (bans licenses sources) (push) Waiting to run
build / Clippy check (push) Waiting to run
Codespell / Codespell (push) Waiting to run
website / prerelease-docs-build-deploy (ubuntu-latest) (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
Some checks are pending
binaries / Build binary artifacts (linux-aarch64-gnu, ubuntu-24.04, aarch64-unknown-linux-gnu) (push) Waiting to run
binaries / Build binary artifacts (linux-aarch64-musl, ubuntu-24.04, aarch64-unknown-linux-musl) (push) Waiting to run
binaries / Build binary artifacts (linux-x86_64-gnu, ubuntu-24.04, x86_64-unknown-linux-gnu) (push) Waiting to run
binaries / Build binary artifacts (linux-x86_64-musl, ubuntu-24.04, x86_64-unknown-linux-musl) (push) Waiting to run
binaries / Build binary artifacts (macos-aarch64, macos-14, aarch64-apple-darwin) (push) Waiting to run
binaries / Build binary artifacts (macos-x86_64, macos-13, x86_64-apple-darwin) (push) Waiting to run
binaries / Build binary artifacts (win-x86_64, windows-2022, x86_64-pc-windows-msvc) (push) Waiting to run
nix / flake check (macos-14) (push) Waiting to run
nix / flake check (ubuntu-latest) (push) Waiting to run
build / build (, macos-13) (push) Waiting to run
build / build (, macos-14) (push) Waiting to run
build / build (, ubuntu-latest) (push) Waiting to run
build / build (, windows-latest) (push) Waiting to run
build / build (--all-features, ubuntu-latest) (push) Waiting to run
build / Build jj-lib without Git support (push) Waiting to run
build / Check protos (push) Waiting to run
build / Check formatting (push) Waiting to run
build / Check that MkDocs can build the docs (push) Waiting to run
build / Check that MkDocs can build the docs with Poetry 1.8 (push) Waiting to run
build / cargo-deny (advisories) (push) Waiting to run
build / cargo-deny (bans licenses sources) (push) Waiting to run
build / Clippy check (push) Waiting to run
Codespell / Codespell (push) Waiting to run
website / prerelease-docs-build-deploy (ubuntu-latest) (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
Found a few more broken links beyond those in 9b5cdf2
.
This commit is contained in:
parent
fce128520c
commit
5a8d5f9f5a
3 changed files with 4 additions and 4 deletions
|
@ -56,7 +56,7 @@ pub struct BookmarkListArgs {
|
|||
///
|
||||
/// By default, the specified name matches exactly. Use `glob:` prefix to
|
||||
/// select bookmarks by wildcard pattern. For details, see
|
||||
/// https://martinvonz.github.io/jj/docs/revsets.md#string-patterns.
|
||||
/// https://martinvonz.github.io/jj/latest/revsets/#string-patterns.
|
||||
#[arg(value_parser = StringPattern::parse)]
|
||||
names: Vec<StringPattern>,
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ use crate::ui::Ui;
|
|||
/// Manage bookmarks
|
||||
///
|
||||
/// For information about bookmarks, see
|
||||
/// https://martinvonz.github.io/jj/latest/docs/bookmarks.md.
|
||||
/// https://martinvonz.github.io/jj/latest/bookmarks.
|
||||
#[derive(clap::Subcommand, Clone, Debug)]
|
||||
pub enum BookmarkCommand {
|
||||
#[command(visible_alias("c"))]
|
||||
|
|
|
@ -235,7 +235,7 @@ Apply the reverse of a revision on top of another revision
|
|||
|
||||
Manage bookmarks
|
||||
|
||||
For information about bookmarks, see https://martinvonz.github.io/jj/latest/docs/bookmarks.md.
|
||||
For information about bookmarks, see https://martinvonz.github.io/jj/latest/bookmarks.
|
||||
|
||||
**Usage:** `jj bookmark <COMMAND>`
|
||||
|
||||
|
@ -313,7 +313,7 @@ For information about bookmarks, see https://martinvonz.github.io/jj/latest/book
|
|||
|
||||
* `<NAMES>` — Show bookmarks whose local name matches
|
||||
|
||||
By default, the specified name matches exactly. Use `glob:` prefix to select bookmarks by wildcard pattern. For details, see https://martinvonz.github.io/jj/docs/revsets.md#string-patterns.
|
||||
By default, the specified name matches exactly. Use `glob:` prefix to select bookmarks by wildcard pattern. For details, see https://martinvonz.github.io/jj/latest/revsets/#string-patterns.
|
||||
|
||||
###### **Options:**
|
||||
|
||||
|
|
Loading…
Reference in a new issue