Waleed Khan
cf8c2b0717
cli_util: fix typo
2022-12-31 02:57:26 -06:00
dependabot[bot]
f05c6fc6fd
cargo: bump once_cell from 1.16.0 to 1.17.0
...
Bumps [once_cell](https://github.com/matklad/once_cell ) from 1.16.0 to 1.17.0.
- [Release notes](https://github.com/matklad/once_cell/releases )
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md )
- [Commits](https://github.com/matklad/once_cell/compare/v1.16.0...v1.17.0 )
---
updated-dependencies:
- dependency-name: once_cell
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-30 09:38:30 -08:00
dependabot[bot]
d7c335d6b2
cargo: bump predicates from 2.1.4 to 2.1.5
...
Bumps [predicates](https://github.com/assert-rs/predicates-rs ) from 2.1.4 to 2.1.5.
- [Release notes](https://github.com/assert-rs/predicates-rs/releases )
- [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/assert-rs/predicates-rs/compare/v2.1.4...v2.1.5 )
---
updated-dependencies:
- dependency-name: predicates
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-30 09:38:14 -08:00
Augie Fackler
f64d8f45ae
Commands: Alias commit to ci for cvs/mercurial/svn compatability
...
As far as I can tell it won't hurt anyone to have this alias exist, but will
help those of us with old muscle memory.
2022-12-30 09:26:55 -05:00
Yuya Nishihara
b3fa9e5b6c
matchers: rename Dirs to RepoPathTree as it no longer represents directory
2022-12-30 14:15:27 +09:00
Yuya Nishihara
4f875ff9b7
matchers: leverage Dirs tree to test prefix matches, no .to_vec() in loop
...
No special case for prefix.is_root() is needed since the root entry can
also be flagged as a file.
2022-12-30 14:15:27 +09:00
Yuya Nishihara
996ac22921
matchers: simplify FilesMatcher::new() to take slice of paths
2022-12-30 14:15:27 +09:00
Yuya Nishihara
c7eaee3d86
matchers: remove redundant files set from FilesMatcher, use Dirs
2022-12-30 14:15:27 +09:00
Yuya Nishihara
2fb0363c03
matchers: add method to create visit sets from Dirs, remove separate getters
...
We might also want to eliminate .collect()/clone() here, but that's not
considered yet.
2022-12-30 14:15:27 +09:00
Yuya Nishihara
ba632e6ef6
matchers: build tree of Dirs so prefix match works out of the box
...
A file entry is represented as a Dirs of is_file flag set. This might seem
odd at this point, but allows us to remove special case from PrefixMatcher.
PrefixMatcher::new(&[RepoPath::root()]) will set is_file to the root entry.
2022-12-30 14:15:27 +09:00
dependabot[bot]
37fa7c39d4
cargo: bump whoami from 1.2.3 to 1.3.0
...
Bumps [whoami](https://github.com/ardaku/whoami ) from 1.2.3 to 1.3.0.
- [Release notes](https://github.com/ardaku/whoami/releases )
- [Changelog](https://github.com/ardaku/whoami/blob/stable/CHANGELOG.md )
- [Commits](https://github.com/ardaku/whoami/compare/v1.2.3...v1.3.0 )
---
updated-dependencies:
- dependency-name: whoami
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-29 07:39:59 -08:00
David Barnett
e824c491bf
Add a "config" command with "get" and "list" subcommands
...
Partially fixes #531 .
2022-12-27 16:59:20 -06:00
dependabot[bot]
9bf5f1c430
cargo: bump serde from 1.0.151 to 1.0.152
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.151 to 1.0.152.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.151...v1.0.152 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-27 14:18:35 -08:00
Martin von Zweigbergk
d86ba708a3
repo: add MutableRepo::rewrite_commit()
returning CommitBuilder
...
Same reasoning as the previous commit.
2022-12-26 23:30:52 -08:00
Martin von Zweigbergk
812ef97adb
repo: add MutableRepo::new_commit()
returning CommitBuilder
...
Since `CommitBuilder` now has a reference to `MutableRepo`, it's
convenient to create instances of it by calling a method on
`MutableRepo`.
2022-12-26 23:30:52 -08:00
Martin von Zweigbergk
f3208f59c4
store: propagate error from Backend::write_commit()
2022-12-26 23:30:52 -08:00
Martin von Zweigbergk
f1d7bbe508
testutils: create a function for writing a random commit to MutableRepo
...
We already have `create_random_commit()`, which returns a
`CommitBuilder`. Most callers directly write that to a
`MutableRepo`. That currently returns a `Commit`, but I'm about to
make it propagate errors from the backend. That would add an
`unwrap()` to this sequence, making it longer. Let's create a simple
helper for these callers to simplify this common pattern.
2022-12-26 23:30:52 -08:00
Martin von Zweigbergk
49b2f3b6ca
commit_builder: keep MutableRepo reference
...
When you're done with the `CommitBuilder`, you're going to have to
call `write_to_repo()`, passing it a mutable `MutableRepo`
reference. It's a bit simpler to pass that reference when we create
the `CommitBuilder` instead, so that's what this patch does.
A drawback of passing in the mutable reference when we create the
builder is that we can't have multiple unfinished `CommitBuilder`
instance live at the same time. We don't have any such use cases yet,
and it's not hard to work around them, so I think this change is worth
it.
2022-12-26 23:30:52 -08:00
dependabot[bot]
70a6798d76
cargo: bump pest_derive from 2.5.1 to 2.5.2
...
Bumps [pest_derive](https://github.com/pest-parser/pest ) from 2.5.1 to 2.5.2.
- [Release notes](https://github.com/pest-parser/pest/releases )
- [Commits](https://github.com/pest-parser/pest/compare/v2.5.1...v2.5.2 )
---
updated-dependencies:
- dependency-name: pest_derive
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-26 15:20:38 +00:00
Yuya Nishihara
d89619c9c6
git: diff refs to export without building dummy view
2022-12-25 00:11:14 +09:00
Martin von Zweigbergk
5cb3807b26
colors: move defaults from source to file
2022-12-24 07:07:37 -08:00
Martin von Zweigbergk
6514ab2e3a
cli: when config is invalid, use default config
...
When we fail to read the user's config, it seems obviously better to
use the default config than to not use it. It doesn't matter yet, but
it will matter when I've moved color configs out of `formatter.rs` and
into a `.toml` file. Without this change, we'd lose the default
coloring of the error message for config errors.
2022-12-24 07:07:37 -08:00
Martin von Zweigbergk
462f696e4e
config: add a README to explain that the config files are not installed
2022-12-24 07:07:37 -08:00
Martin von Zweigbergk
b22a6db7e7
config: move default merge-tool config into config/ directory
...
I'm about to add more default configs, so it will be good to collect
them in one directory.
2022-12-24 07:07:37 -08:00
dependabot[bot]
db0a524f7b
cargo: bump clap_complete from 4.0.6 to 4.0.7
...
Bumps [clap_complete](https://github.com/clap-rs/clap ) from 4.0.6 to 4.0.7.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.0.6...clap_complete-v4.0.7 )
---
updated-dependencies:
- dependency-name: clap_complete
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-23 23:31:08 +00:00
dependabot[bot]
72ed6676bb
cargo: bump clap from 4.0.30 to 4.0.32
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.0.30 to 4.0.32.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.30...v4.0.32 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-23 15:18:36 -08:00
dependabot[bot]
77b7884464
cargo: bump clap_mangen from 0.2.5 to 0.2.6
...
Bumps [clap_mangen](https://github.com/clap-rs/clap ) from 0.2.5 to 0.2.6.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.5...clap_mangen-v0.2.6 )
---
updated-dependencies:
- dependency-name: clap_mangen
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-23 09:25:15 -08:00
dependabot[bot]
481f87abd3
cargo: bump pest from 2.5.1 to 2.5.2
...
Bumps [pest](https://github.com/pest-parser/pest ) from 2.5.1 to 2.5.2.
- [Release notes](https://github.com/pest-parser/pest/releases )
- [Commits](https://github.com/pest-parser/pest/compare/v2.5.1...v2.5.2 )
---
updated-dependencies:
- dependency-name: pest
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-23 09:24:57 -08:00
Tal Pressman
cc40740fa2
Update cargo installation instructions
2022-12-24 02:24:23 +09:00
Yuya Nishihara
587e42d65d
backend: deduplicate id type declarations by using declarative macro
2022-12-23 23:52:03 +09:00
Yuya Nishihara
b07c0db56b
backend: deduplicate id type impls by using declarative macro
...
It's unlikely we'll need to customize these impls per type, so let's ensure
that these newtypes have identical implementations. This commit also adds
from_hex() to FileId, SymlinkId, and ConflictId.
2022-12-23 23:52:03 +09:00
Ilya Grigoriev
5a681d31d0
cmd jj log
: Move divergent
label next to the change id
...
The divergent label is most relevant when the user is about to
refer to a commit by its change id.
It's also good to put it far from the `conflicts` label, to
reduce confusion between very different concepts that have
similar names.
Finally, I think it is a feature rather than a bug that the
`divergent` label now upsets the alignment of different lines
of `jj log`.
2022-12-22 17:25:16 -08:00
Benjamin Saunders
d99e85269f
cli: fix core.excludesFile default when XDG_CONFIG_HOME is set
2022-12-22 10:03:20 -08:00
Yuya Nishihara
48cf32f559
cli: simply assign result of if expression in cmd_describe()
2022-12-23 00:47:22 +09:00
Yuya Nishihara
2550dcae4c
cli: include diff summary in commit/describe editor content
2022-12-23 00:47:22 +09:00
Yuya Nishihara
d438f43224
cli: rephrase diff summary header so it can be reused for commit/describe
2022-12-23 00:47:22 +09:00
Yuya Nishihara
e7d9e1ff9c
cli: inline diff_util::diff_as_bytes()
...
I'll add a similar function that uses show_patch() instead of show_diff(),
and I don't think it's worth duplicating _as_bytes() part for that.
2022-12-23 00:47:22 +09:00
Yuya Nishihara
5076622598
tests: use insta to test editor contents
...
It's tedious to update editor expectation manually. Let's dump the actual
content and test it after each command invocation.
2022-12-23 00:47:22 +09:00
Yuya Nishihara
1cb1a1f1dc
fake-editor: add dump command to be used with insta::assert_snapshot!()
...
This allows us to use insta against dumped content.
2022-12-23 00:47:22 +09:00
Yuya Nishihara
8613ec985c
fake-editor: trivial code cleanup
2022-12-23 00:47:22 +09:00
Yuya Nishihara
36020a2bbf
revset: parse hg/git-like '^' postfix operator and show hint
2022-12-23 00:38:29 +09:00
Yuya Nishihara
7cd01b27a7
revset: parse hg-like '-'/'+' infix operators and show hint
...
Suggested by @arxanas.
Actually, it's easier to support these infix ops than erroring out, but I
don't want to make revset syntax more cryptic. "x- y" can't be handled by
this rule because "x-" is parsed as a parents expression.
2022-12-23 00:38:29 +09:00
dependabot[bot]
7b09124bcb
cargo: bump libc from 0.2.138 to 0.2.139
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.138 to 0.2.139.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.138...0.2.139 )
---
updated-dependencies:
- dependency-name: libc
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-22 15:20:28 +00:00
dependabot[bot]
bb0cb7f8d1
github: bump ossf/scorecard-action from 2.1.1 to 2.1.2
...
Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action ) from 2.1.1 to 2.1.2.
- [Release notes](https://github.com/ossf/scorecard-action/releases )
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md )
- [Commits](15c10fcf1c...e38b1902ae
)
---
updated-dependencies:
- dependency-name: ossf/scorecard-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-22 15:15:44 +00:00
Benjamin Saunders
aaa175eca7
lib: replace protobuf crate with prost
2022-12-22 07:04:35 -08:00
Yuya Nishihara
300f744e41
cli: normalize line ending of edited commit description, ensure last newline
...
Since CR+LF vs LF things shouldn't matter in commit description, it's probably
better to normalize newline characters.
In Mercurial, ui.edit() and changelog.stripdesc() handle line normalization,
and trailing newlines are stripped. In Git, cleanup_message() handles that,
and the last newline is added after stripping trailing newlines.
2022-12-22 14:59:03 +09:00
Yuya Nishihara
6f8fb09609
cli: append "\n" to commit description specified by -m/--message
...
Otherwise the description set by -m would differ from the one set by editor.
This fixes test_describe() which says "make no changes", but previously "\n"
would be added by the second "jj describe".
As you can see, almost all hashes change in CLI tests. This means in-flight
PRs will need to be rebased to update insta snapshots.
Description text could be normalized by CommitBuilder, but the caller would
have to normalize it beforehand to compare with the current description, so
we would need an explicit function anyway. Another idea is to add a newtype
that represents a normalized description, and make CommitBuilder require it.
Commit::description() will return &Description in place of &str to ensure
that commit.description() == raw_str wouldn't compile.
Git CLI provides --cleanup=<mode> option to switch normalization rules, but
I don't think we'll need such feature.
2022-12-22 14:59:03 +09:00
Yuya Nishihara
986649623d
commit_builder: relax type of description parameter
...
The next commit will introduce a newtype for -m/--message argument which
can be converted Into<String>.
Since CommitBuilder is a thin wrapper, code bloat caused by generic parameters
wouldn't matter. I have another set of commits that makes all builder methods
accept Into/IntoIterator, which will remove some of .clone() calls from tests.
2022-12-22 14:59:03 +09:00
Benjamin Saunders
6063fe8f06
cargo: add testutils to workspace
2022-12-21 16:02:48 -08:00
dependabot[bot]
722f8ff3e5
cargo: bump clap from 4.0.29 to 4.0.30
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.0.29 to 4.0.30.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.29...v4.0.30 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-12-21 09:06:45 -08:00