jj/lib/src
Yuya Nishihara 3eafca65ea op_walk: add support for op_id+ (children) operator
A possible use case is when doing some archaeology around a certain operation.

The current implementation is quadratic if + is repeated. Suppose op_id is
usually close to the current op heads, I think it'll practically work better
than building a reverse lookup table.
2024-01-02 10:30:08 +09:00
..
default_index index: show bad operation id if commit lookup failed during reindexing 2023-12-29 13:05:58 +09:00
lock perf: add several #[instrument]s 2023-07-28 09:28:01 -07:00
protos working_copy: don't build intermediate HashMap from proto file states 2023-11-20 08:29:33 +09:00
backend.rs gc: implement basic GC for Git backend 2023-12-03 07:40:12 -08:00
commit.rs sign: Define signing backend API and integrate it 2023-11-30 23:36:56 +02:00
commit_builder.rs Make CommitBuilder constructors private to the library crate 2023-12-24 19:25:16 -08:00
conflicts.rs cli: pass MaterializedTreeValue into git_diff_part() 2023-11-10 04:54:47 -08:00
content_hash.rs content_hash: make public 2023-09-18 07:53:19 -07:00
dag_walk.rs dag_walk: add fallible topo_order_reverse_lazy() 2023-11-14 07:16:39 +09:00
default_revset_engine.rs revset: simplify type constraints on combination iterators 2023-12-16 07:50:04 +09:00
default_revset_graph_iterator.rs index: move default_index_store.rs to sub directory named default_index 2023-12-12 08:07:52 +09:00
default_submodule_store.rs backends: deduplicate definition of backend names 2023-10-14 06:38:35 -07:00
diff.rs
file_util.rs file_util: don't try to overwrite existing content-addressed file on Windows 2023-12-17 08:20:07 +09:00
files.rs merge: relax input type of Merge::from_removes_adds() 2023-11-07 17:10:12 +09:00
fmt_util.rs settings: support human-readable byte sizes for max-new-file-size 2023-08-17 19:29:38 -07:00
fsmonitor.rs fsmonitor: exclude .git and .jj directories from changed files 2023-11-23 18:48:14 +09:00
git.rs repo: propagate store error from add_heads() 2023-12-24 00:22:30 +09:00
git_backend.rs cargo: bump gix to 0.56.0 2023-12-15 14:17:02 +09:00
gitignore.rs Fix .gitignore handling of ignored directories 2023-08-22 22:08:32 -07:00
hex_util.rs
id_prefix.rs index: rename resolve_prefix() to resolve_commit_id_prefix() 2023-12-26 01:03:10 +09:00
index.rs op_walk: reimplement prefix lookup by using walk_ancestors() and HexPrefix 2024-01-02 10:30:08 +09:00
lib.rs op_walk: extract walk_ancestors() to new module 2024-01-01 10:22:23 +09:00
local_backend.rs gc: implement basic GC for Git backend 2023-12-03 07:40:12 -08:00
local_working_copy.rs working copy: read files ahead when updating 2023-12-29 13:37:13 -08:00
lock.rs lock: remove byteorder dependency from tests, use fs helper functions 2023-12-23 00:14:17 +09:00
matchers.rs matchers: clean up .walk_to(dir) to yield &RepoPath instead of iterator 2023-11-29 08:41:23 +09:00
merge.rs repo_path: add stub RepoPathBuf type, update callers 2023-11-28 07:33:28 +09:00
merged_tree.rs merged_tree: remove canceling terms prior to resolving file-level conflict 2023-12-03 07:44:58 +09:00
op_heads_store.rs op_heads: let caller decide resolve_op_heads() error type 2024-01-01 10:22:23 +09:00
op_store.rs op_store: embed details in operation/view not found error 2023-11-11 22:35:40 +09:00
op_walk.rs op_walk: add support for op_id+ (children) operator 2024-01-02 10:30:08 +09:00
operation.rs operation: make parent_ids() return slice instead of Vec reference 2024-01-02 02:47:41 +09:00
refs.rs merge: add Merge constructor that accepts interleaved values 2023-11-07 17:10:12 +09:00
repo.rs op_heads: let caller decide resolve_op_heads() error type 2024-01-01 10:22:23 +09:00
repo_path.rs working_copy: add file states wrapper that provides map-like API 2023-11-30 12:09:31 +09:00
revset.pest revset: add 0-ary "::" and ".." operators as short for "all()" and "~root()" 2023-09-05 10:40:04 +09:00
revset.rs index: rename resolve_prefix() to resolve_commit_id_prefix() 2023-12-26 01:03:10 +09:00
revset_graph.rs revsets: allow :: as synonym for : 2023-07-28 22:30:40 -07:00
rewrite.rs rewrite.rs: refactor new_parents to depend only on parent_mapping 2023-12-12 19:35:51 -08:00
settings.rs git: turn git.auto-local-branch off by default 2023-12-17 08:30:24 +09:00
signing.rs sign: Define signing backend API and integrate it 2023-11-30 23:36:56 +02:00
simple_op_heads_store.rs op heads: remove now-unused methods for adding/removing op heads 2023-12-28 09:17:42 -08:00
simple_op_store.rs file_util: drop open file instance from PersistError 2023-12-17 08:20:07 +09:00
stacked_table.rs index, stacked_table: inline read_u32::<LittleEndian>() 2023-12-23 00:14:17 +09:00
store.rs gc: implement basic GC for Git backend 2023-12-03 07:40:12 -08:00
str_util.rs cli: parse "git fetch --branch" parameter as string pattern 2023-10-25 03:58:48 +09:00
submodule_store.rs
transaction.rs op heads: remove promote_new_op() 2023-12-28 09:17:42 -08:00
tree.rs merged_tree: remove canceling terms prior to resolving file-level conflict 2023-12-03 07:44:58 +09:00
tree_builder.rs repo_path: change .split() and .parent() to return &RepoPath 2023-11-29 08:41:23 +09:00
view.rs cli: add string pattern support to "git push --branch" 2023-10-26 04:51:17 +09:00
working_copy.rs repo_path: add stub RepoPathBuf type, update callers 2023-11-28 07:33:28 +09:00
workspace.rs transaction: take description at end instead of start 2023-12-13 08:12:49 -08:00