Ilya Grigoriev

Results 694 comments of Ilya Grigoriev

I also am often interested in why the *last* snapshot was larger than I anticipated. Then, I often add some excludes, prune, and redo the last snapshot. If redu supported...

I think that there are few fish variables to preserve; at least `$status` and `$pipestatus`. In addition to running `false` for the test, you can also try `true | false`.

I think you can do this to stick with `fish`: ```fish function exitcode return $argv[1] end exitcode 5 | exitcode 4 ``` https://github.com/fish-shell/fish-shell/issues/7830 might also be related. I also [asked...

Thanks! You can also get the repo with my merges from https://github.com/ilyagr/jj (though it does of course change somewhat over time).

Thanks for reporting! I would call this not so much a case of the instructions being wrong as the process for building offline docs being unable to handle mermaid diagrams....

Mermaid is always rendered via javascript, the JS renderer is the only one I'm aware of. There might be a way to ship that javascript with the offline docs and...

> This was not implemented for the operation log because mine always seems to be linear. It gets non-linear when several `jj` commands run concurrently, usually because you have `jjui`...

I was thinking that about you 😀. Several times I woke up, and `jjui` had several new features, a couple of which I previously thought would be impractically difficult. Editing...

There's a typo in the commit description and the PR name (remove -> remote).

Also, this needs a test. You should probably test the case when `branch1` and `branch2@remote` are at the same commit. IMO, both should show up in the completion. Another thing...