terminal user interface to jujutsu. Focused on speed and clarity
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

draft of conversion to using picos

+12232 -231
+2
dune-project
··· 32 32 ppx_jane 33 33 eio-process 34 34 35 + (picos_std (= 0.5.0)) 36 + (picos_io (= 0.5.0)) 35 37 ;;for notty 36 38 uutf 37 39 )
+14 -14
flake.lock
··· 5 5 "nixpkgs-lib": "nixpkgs-lib" 6 6 }, 7 7 "locked": { 8 - "lastModified": 1717285511, 9 - "narHash": "sha256-iKzJcpdXih14qYVcZ9QC9XuZYnPc6T8YImb6dX166kw=", 8 + "lastModified": 1725234343, 9 + "narHash": "sha256-+ebgonl3NbiKD2UD0x4BszCZQ6sTfL4xioaM49o5B3Y=", 10 10 "owner": "hercules-ci", 11 11 "repo": "flake-parts", 12 - "rev": "2a55567fcf15b1b1c7ed712a2c6fadaec7412ea8", 12 + "rev": "567b938d64d4b4112ee253b9274472dc3a346eb6", 13 13 "type": "github" 14 14 }, 15 15 "original": { ··· 37 37 }, 38 38 "nixpkgs": { 39 39 "locked": { 40 - "lastModified": 1713537308, 41 - "narHash": "sha256-XtTSSIB2DA6tOv+l0FhvfDMiyCmhoRbNB+0SeInZkbk=", 42 - "path": "/nix/store/v4pcs3nzx54m5bmxd39win0rgl2d2hbx-source", 43 - "rev": "5c24cf2f0a12ad855f444c30b2421d044120c66f", 40 + "lastModified": 1725103162, 41 + "narHash": "sha256-Ym04C5+qovuQDYL/rKWSR+WESseQBbNAe5DsXNx5trY=", 42 + "path": "/nix/store/bd4fmzws6n5542khxbifbkr6nrygi232-source", 43 + "rev": "12228ff1752d7b7624a54e9c1af4b222b3c1073b", 44 44 "type": "path" 45 45 }, 46 46 "original": { ··· 50 50 }, 51 51 "nixpkgs-lib": { 52 52 "locked": { 53 - "lastModified": 1717284937, 54 - "narHash": "sha256-lIbdfCsf8LMFloheeE6N31+BMIeixqyQWbSr2vk79EQ=", 53 + "lastModified": 1725233747, 54 + "narHash": "sha256-Ss8QWLXdr2JCBPcYChJhz4xJm+h/xjl4G0c0XlP6a74=", 55 55 "type": "tarball", 56 - "url": "https://github.com/NixOS/nixpkgs/archive/eb9ceca17df2ea50a250b6b27f7bf6ab0186f198.tar.gz" 56 + "url": "https://github.com/NixOS/nixpkgs/archive/356624c12086a18f2ea2825fed34523d60ccc4e3.tar.gz" 57 57 }, 58 58 "original": { 59 59 "type": "tarball", 60 - "url": "https://github.com/NixOS/nixpkgs/archive/eb9ceca17df2ea50a250b6b27f7bf6ab0186f198.tar.gz" 60 + "url": "https://github.com/NixOS/nixpkgs/archive/356624c12086a18f2ea2825fed34523d60ccc4e3.tar.gz" 61 61 } 62 62 }, 63 63 "ocaml-overlay": { ··· 68 68 ] 69 69 }, 70 70 "locked": { 71 - "lastModified": 1718572869, 72 - "narHash": "sha256-Fendny0DmXnJXffYPTIyeixdxkNFD7CBuoisQ2U37WU=", 71 + "lastModified": 1725532029, 72 + "narHash": "sha256-PJZLMI9lNJ+DeNiN0Yc5AGo5YlRjLeiytMFPbWfC2xY=", 73 73 "owner": "nix-ocaml", 74 74 "repo": "nix-overlays", 75 - "rev": "e83c9a2411b1801540622d4c5e66db3f809b5f80", 75 + "rev": "43773c6701d459391dadfa8f73225d5fd9ad993d", 76 76 "type": "github" 77 77 }, 78 78 "original": {
+209 -75
flake.nix
··· 12 12 }; 13 13 }; 14 14 # Flake outputs 15 - outputs = { self, nixpkgs, flake-parts, ocaml-overlay, ... }@inputs: 15 + outputs = 16 + { 17 + self, 18 + nixpkgs, 19 + flake-parts, 20 + ocaml-overlay, 21 + ... 22 + }@inputs: 16 23 17 24 flake-parts.lib.mkFlake { inherit inputs; } { 18 - systems = 19 - [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ]; 20 - perSystem = { config, self', inputs', pkgs, system, ... }: 25 + systems = [ 26 + "x86_64-linux" 27 + "aarch64-linux" 28 + "aarch64-darwin" 29 + "x86_64-darwin" 30 + ]; 31 + perSystem = 32 + { 33 + config, 34 + self', 35 + inputs', 36 + pkgs, 37 + system, 38 + ... 39 + }: 21 40 let 22 - jj_tui = pkgs: ocamlPackages: profile: 41 + jj_tui = 42 + pkgs: ocamlPackages: profile: 23 43 let 24 - notty-mine = ocamlPackages.notty.overrideAttrs 25 - (old: { src = ./forks/notty/.; }); 44 + notty-mine = ocamlPackages.notty.overrideAttrs (old: { 45 + src = ./forks/notty/.; 46 + }); 47 + picos_src = pkgs.fetchFromGitHub { 48 + 49 + owner = "ocaml-multicore"; 50 + repo = "picos"; 51 + rev = "0.5.0"; 52 + sha256 = "sha256-dbqY/Q+KTWRIJyYi6TqtnU1dLcr/C/F+k4tGG3ISJWI="; 53 + }; 54 + picos = ocamlPackages.buildDunePackage { 55 + pname = "picos"; 56 + version = "0.5.0"; 57 + duneVersion = "3"; 58 + src = picos_src; 59 + buildInputs = with ocamlPackages; [ 60 + backoff 61 + thread-local-storage 62 + ]; 63 + 64 + strictDeps = true; 65 + }; 66 + picos_std = ocamlPackages.buildDunePackage { 67 + pname = "picos_std"; 68 + version = "0.5.0"; 69 + duneVersion = "3"; 70 + src = picos_src; 71 + buildInputs = with ocamlPackages; [ 72 + picos 73 + backoff 74 + thread-local-storage 75 + multicore-magic 76 + ]; 77 + 78 + strictDeps = true; 79 + }; 80 + picos_aux = ocamlPackages.buildDunePackage { 81 + pname = "picos_aux"; 82 + version = "0.5.0"; 83 + duneVersion = "3"; 84 + src = picos_src; 85 + buildInputs = with ocamlPackages; [ 86 + backoff 87 + multicore-magic 88 + ]; 89 + 90 + strictDeps = true; 91 + }; 92 + picos_mux = ocamlPackages.buildDunePackage { 93 + pname = "picos_mux"; 94 + version = "0.5.0"; 95 + duneVersion = "3"; 96 + src = picos_src; 97 + buildInputs = with ocamlPackages; [ 98 + picos 99 + picos_aux 100 + picos_std 101 + backoff 102 + multicore-magic 103 + thread-local-storage 104 + psq 105 + ]; 106 + 107 + strictDeps = true; 108 + }; 109 + picos_io = ocamlPackages.buildDunePackage { 110 + pname = "picos_io"; 111 + version = "0.5.0"; 112 + duneVersion = "3"; 113 + src = picos_src; 114 + buildInputs = with ocamlPackages; [ 115 + picos 116 + picos_aux 117 + picos_std 118 + picos_mux 119 + 120 + backoff 121 + mtime 122 + multicore-magic 123 + psq 124 + thread-local-storage 125 + ]; 126 + strictDeps = true; 127 + }; 128 + picos_mux_with_io = ocamlPackages.buildDunePackage { 129 + pname = "picos_mux"; 130 + version = "0.5.0"; 131 + duneVersion = "3"; 132 + src = picos_src; 133 + buildInputs = with ocamlPackages;picos_io.buildInputs ++[ 134 + picos 135 + picos_aux 136 + picos_std 137 + picos_io 138 + backoff 139 + multicore-magic 140 + thread-local-storage 141 + ]; 142 + 143 + strictDeps = true; 144 + }; 26 145 eio-process = ocamlPackages.buildDunePackage { 27 146 pname = "eio-process"; 28 147 version = "0.1.0"; ··· 32 151 owner = "mbarbin"; 33 152 repo = "eio-process"; 34 153 rev = "482ba341884dc8711f93ec9cc6d7c941099e0faa"; 35 - sha256 = 36 - "sha256-/Y2U+1y+nDMBrRfDAYif0WJp0vPWmvbSMt39wAB/rS8="; 154 + sha256 = "sha256-/Y2U+1y+nDMBrRfDAYif0WJp0vPWmvbSMt39wAB/rS8="; 37 155 }; 38 156 39 157 buildInputs = with ocamlPackages; [ ··· 60 178 owner = "faldor20"; 61 179 repo = "lwd"; 62 180 rev = "c19bc2fd55c2de977cdd283458ce06402b08febe"; 63 - sha256 = 64 - "sha256-8QwDzRgffA4wnE9vWLpLfy9MdQ5Yc8wBF5jgRamGMfA="; 181 + sha256 = "sha256-8QwDzRgffA4wnE9vWLpLfy9MdQ5Yc8wBF5jgRamGMfA="; 65 182 }; 66 183 67 - buildInputs = with ocamlPackages; [ 68 - seq 69 - ]; 184 + buildInputs = with ocamlPackages; [ seq ]; 70 185 71 186 strictDeps = true; 72 187 }; 73 188 nottui = 74 - let pname="nottui"; in 75 - ocamlPackages.buildDunePackage { 76 - pname = "nottui"; 77 - version = "dev"; 78 - duneVersion = "3"; 79 - src = ./forks/nottui/.; 80 - buildInputs = with ocamlPackages; [ 81 - lwd 82 - notty-mine 83 - seq 84 - ]; 85 - buildPhase = '' 86 - runHook preBuild 87 - rm -rf ./tutorial 88 - dune build -p ${pname} ''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 89 - runHook postBuild 90 - ''; 91 - checkPhase = '' 92 - runHook preCheck 93 - dune runtest -p ${pname}''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 94 - runHook postCheck 95 - ''; 96 - installPhase = '' 97 - runHook preInstall 98 - dune install --prefix $out --libdir $OCAMLFIND_DESTDIR ${pname} 99 - runHook postInstall 100 - ''; 189 + let 190 + pname = "nottui"; 191 + in 192 + ocamlPackages.buildDunePackage { 193 + pname = "nottui"; 194 + version = "dev"; 195 + duneVersion = "3"; 196 + src = ./forks/nottui/.; 197 + buildInputs = with ocamlPackages; [ 198 + lwd 199 + notty-mine 200 + seq 201 + ]; 202 + buildPhase = '' 203 + runHook preBuild 204 + rm -rf ./tutorial 205 + dune build -p ${pname} ''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 206 + runHook postBuild 207 + ''; 208 + checkPhase = '' 209 + runHook preCheck 210 + dune runtest -p ${pname}''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 211 + runHook postCheck 212 + ''; 213 + installPhase = '' 214 + runHook preInstall 215 + dune install --prefix $out --libdir $OCAMLFIND_DESTDIR ${pname} 216 + runHook postInstall 217 + ''; 101 218 102 - strictDeps = true; 103 - }; 219 + strictDeps = true; 220 + }; 104 221 jj_tui_build_pkgs = 105 222 106 - [ 223 + picos.buildInputs 224 + ++ picos_std.buildInputs 225 + ++ picos_aux.buildInputs 226 + ++ [ 107 227 lwd 108 228 notty-mine 109 229 nottui 110 230 eio-process 231 + picos 232 + picos_std 233 + picos_io 234 + picos_mux_with_io 235 + 236 + picos_aux 237 + ocamlPackages.mtime 238 + ocamlPackages.multicore-magic 239 + ocamlPackages.psq 240 + ocamlPackages.thread-local-storage 241 + 111 242 ocamlPackages.parsexp 112 243 ocamlPackages.eio_main 113 244 ocamlPackages.stdio ··· 119 250 120 251 # Ocaml package dependencies needed to build go here. 121 252 ]; 122 - jj_tui = let pname = "jj_tui"; 123 - in ocamlPackages.buildDunePackage { 124 - pname = pname; 125 - version = "0.1.0"; 126 - duneVersion = "3"; 127 - src = ./.; 253 + jj_tui = 254 + let 255 + pname = "jj_tui"; 256 + in 257 + ocamlPackages.buildDunePackage { 258 + pname = pname; 259 + version = "0.1.0"; 260 + duneVersion = "3"; 261 + src = ./.; 128 262 129 - buildInputs = jj_tui_build_pkgs; 263 + buildInputs = jj_tui_build_pkgs; 130 264 131 - buildPhase = '' 132 - runHook preBuild 133 - dune build -p ${pname} --profile ${profile} ''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 134 - runHook postBuild 135 - ''; 136 - checkPhase = '' 137 - runHook preCheck 138 - dune runtest -p ${pname}--profile ${profile} ''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 139 - runHook postCheck 140 - ''; 141 - installPhase = '' 142 - runHook preInstall 143 - dune install --profile ${profile} --prefix $out --libdir $OCAMLFIND_DESTDIR ${pname} 144 - runHook postInstall 145 - ''; 146 - strictDeps = true; 265 + buildPhase = '' 266 + runHook preBuild 267 + dune build -p ${pname} --profile ${profile} ''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 268 + runHook postBuild 269 + ''; 270 + checkPhase = '' 271 + runHook preCheck 272 + dune runtest -p ${pname}--profile ${profile} ''${enableParallelBuilding:+-j $NIX_BUILD_CORES} 273 + runHook postCheck 274 + ''; 275 + installPhase = '' 276 + runHook preInstall 277 + dune install --profile ${profile} --prefix $out --libdir $OCAMLFIND_DESTDIR ${pname} 278 + runHook postInstall 279 + ''; 280 + strictDeps = true; 147 281 148 - }; 149 - in { 282 + }; 283 + in 284 + { 150 285 jj_tui = jj_tui; 151 286 jj_tui_build_pkgs = jj_tui_build_pkgs; 152 287 }; ··· 154 289 ocamlPackages = pkgs.ocaml-ng.ocamlPackages_5_1; 155 290 inherit (pkgs) mkShell lib; 156 291 157 - in { 292 + in 293 + { 158 294 _module.args.pkgs = import inputs.nixpkgs { 159 295 inherit system; 160 296 config.allowUnfree = true; 161 297 overlays = [ ocaml-overlay.overlays.default ]; 162 298 }; 163 299 packages = { 164 - default = (jj_tui pkgs ocamlPackages 165 - "release").jj_tui; # Development environment output 166 - static = (jj_tui pkgs.pkgsCross.musl64 167 - pkgs.pkgsCross.musl64.ocaml-ng.ocamlPackages_5_1 168 - "static").jj_tui; # Development environment output 300 + default = (jj_tui pkgs ocamlPackages "release").jj_tui; # Development environment output 301 + static = 302 + (jj_tui pkgs.pkgsCross.musl64 pkgs.pkgsCross.musl64.ocaml-ng.ocamlPackages_5_1 "static").jj_tui; # Development environment output 169 303 }; 170 304 devShells = { 171 305 default = mkShell.override { stdenv = pkgs.gccStdenv; } {
+3
forks/nottui/lib/nottui/nottui_main.ml
··· 20 20 | Empty 21 21 | Handle of int * var 22 22 | Conflict of int 23 + val peek_has_focus:handle->bool 23 24 24 25 val empty : status 25 26 (*val is_empty : status -> bool*) ··· 52 53 let has_focus = function 53 54 | Empty -> false 54 55 | Handle (i, _) | Conflict i -> i > 0 56 + 57 + let peek_has_focus (h : handle) : bool= fst h|>Lwd.peek>0 55 58 56 59 let clock = ref 0 57 60
+2
forks/nottui/lib/nottui/nottui_main.mli
··· 36 36 (** Check if this [status] corresponds to an active focus *) 37 37 val has_focus : status -> bool 38 38 39 + (** EXPERIMENTAL: Check if the handle is focused.*) 40 + val peek_has_focus:handle->bool 39 41 (** TODO 40 42 This implements a more general concept of "reactive auction": 41 43
+2
jj_tui.opam
··· 21 21 "ppx_expect" 22 22 "ppx_jane" 23 23 "eio-process" 24 + "picos_std" {= "0.5.0"} 25 + "picos_io" {= "0.5.0"} 24 26 "uutf" 25 27 "odoc" {with-doc} 26 28 ]
+1 -1
jj_tui/bin/dune
··· 1 1 (executable 2 2 (public_name jj_tui) 3 3 (name main) 4 - (libraries jj_tui nottui base stdio eio_main eio-process ) 4 + (libraries jj_tui nottui base stdio picos_io picos_mux.multififo picos_std.sync picos_std.finally picos_std.structured eio_main eio-process ) 5 5 ) 6 6 7 7 (env
+34 -11
jj_tui/bin/file_view.ml
··· 7 7 open! Jj_tui.Util 8 8 open Jj_commands.Make (Vars) 9 9 open Global_vars 10 + open Jj_tui 11 + open Picos_std_structured 10 12 11 13 let selected_file = Lwd.var "" 12 14 ··· 91 93 ] 92 94 ;; 93 95 94 - let file_view sw () = 96 + let file_view focus = 95 97 let file_uis = 96 98 let$ files = Lwd.get Vars.ui_state.jj_change_files in 97 99 files 98 100 |> List.map (fun (_modifier, file) -> 99 101 W.Lists.{ data = file; ui = W.Lists.selectable_item (W.string file) }) 100 102 in 103 + let show_diff_promise = ref @@ Promise.of_value () in 104 + (*TODO: 105 + This should be redesigned completely 106 + There will be a new function that renders the show state 107 + It will have a cancellation system just like this one. 108 + when any of the dependencies change, selected file, selected rev, focus etc, it will re-render if needed and cancel the current rendering. 109 + 110 + 111 + *) 112 + let show_selected_file_diff ()= 113 + (* kill any existing process writing to the show buffer*) 114 + !show_diff_promise |> Promise.terminate; 115 + (* set self as current process writing to show buffer*) 116 + show_diff_promise 117 + := Picos_std_structured.Flock.fork_as_promise (fun () -> 118 + let rev = Vars.get_selected_rev () in 119 + let selected = Lwd.peek selected_file in 120 + Vars.ui_state.jj_show 121 + $= 122 + if selected != "" 123 + then 124 + let log=jj_no_log [ "diff"; "-r"; rev; selected ] in 125 + Control.yield(); 126 + let res=log|> AnsiReverse.colored_string in 127 + Control.yield(); 128 + res 129 + else I.string A.empty "") 130 + in 101 131 W.Lists.selection_list_custom 102 - ~on_selection_change:(fun x -> 103 - Eio.Fiber.fork ~sw @@ fun _ -> 104 - Vars.update_ui_state @@ fun _ -> Lwd.set selected_file x) 132 + ~on_selection_change:(fun selected -> 133 + Lwd.set selected_file selected; 134 + if Focus.peek_has_focus focus then show_selected_file_diff()) 105 135 ~custom_handler:(fun _ key -> 106 136 match key with `ASCII k, [] -> handleInputs command_mapping k | _ -> `Unhandled) 107 137 file_uis 108 - ;; 109 - 110 - (**Get the status for the currently selected file*) 111 - let file_status () = 112 - let$ selected = Lwd.get selected_file 113 - and$ rev = Vars.get_selected_rev_lwd () in 114 - if selected != "" then jj_no_log [ "diff"; "-r"; rev; selected ] else "" 115 138 ;; 116 139 end
+15 -14
jj_tui/bin/global_funcs.ml
··· 1 1 open Global_vars 2 2 open Lwd_infix 3 3 open Jj_process.Make (Global_vars.Vars) 4 + open Picos_std_structured 4 5 5 6 let colored_string = Jj_tui.AnsiReverse.colored_string 6 7 ··· 20 21 if str |> Base.String.is_substring ~substring:"There is no jj repo" 21 22 then `NotInRepo 22 23 else `OtherError str 23 - | Error (`EioErr a) -> 24 + | Error (`Exception _) -> 24 25 `CantStartProcess 25 26 ;; 26 27 ··· 38 39 let update_views ?(cause_snapshot = false) () = 39 40 safe_jj (fun () -> 40 41 let rev = Vars.get_selected_rev () in 41 - Eio.Switch.run @@ fun sw -> 42 - let log_res = 43 - jj_no_log ~snapshot:cause_snapshot [ "show"; "-s"; "--color-words"; "-r"; rev ] 44 - |> colored_string 42 + Flock.join_after @@ fun () -> 43 + let tree = 44 + jj_no_log ~snapshot:cause_snapshot [ "log"; "-r"; rev ] |> colored_string 45 45 in 46 46 (* From now on we use ignore-working-copy so we don't re-snapshot the state and so 47 47 we can operate in paralell *) 48 - let tree = 49 - Eio.Fiber.fork_promise ~sw (fun _ -> 50 - jj_no_log ~snapshot:false [ "log"; "-r"; rev ] |> colored_string) 51 48 (* TODO: stop using dop last twice *) 49 + let log_res = 50 + Flock.fork_as_promise (fun _ -> 51 + jj_no_log ~snapshot:false [ "show"; "-s"; "--color-words"; "-r"; rev ] 52 + |> colored_string) 52 53 and branches = 53 - Eio.Fiber.fork_promise ~sw (fun _ -> 54 + Flock.fork_as_promise (fun _ -> 54 55 jj_no_log ~snapshot:false [ "branch"; "list"; "-a" ] |> colored_string) 55 - and files_list = Eio.Fiber.fork_promise ~sw (fun _ -> list_files ~rev ()) in 56 + and files_list = Flock.fork_as_promise (fun _ -> list_files ~rev ()) in 56 57 (*wait for all our tasks*) 57 - let tree = Eio.Promise.await_exn tree 58 - and files_list = Eio.Promise.await_exn files_list 59 - and branches = Eio.Promise.await_exn branches in 58 + let log_res= Promise.await log_res 59 + and files_list = Promise.await files_list 60 + and branches = Promise.await branches in 60 61 (*now we can assign our results*) 61 - Vars.ui_state.jj_show $= log_res; 62 + (* Vars.ui_state.jj_show $= log_res; *) 62 63 Vars.ui_state.jj_branches $= branches; 63 64 Vars.ui_state.jj_tree $= tree; 64 65 Vars.ui_state.jj_change_files $= files_list)
+6 -4
jj_tui/bin/graph_view.ml
··· 348 348 349 349 (*TODO:make a custom widget the renders the commit with and without selection. 350 350 with selection replace the dot with a blue version and slightly blue tint the background *) 351 - let graph_view ~sw () = 351 + let graph_view () = 352 352 (*We have a seperate error var here instead of using a result type. This allows us to avoid using Lwd.bind which would cause our list selection to get reset anytime the content changes *) 353 353 let error_var = Lwd.var None in 354 354 let revset_ui = ··· 415 415 items 416 416 |> W.Lists.selection_list_exclusions 417 417 ~on_selection_change:(fun revision -> 418 - Eio.Fiber.fork ~sw @@ fun _ -> 419 - Vars.update_ui_state @@ fun _ -> 418 + (* Eio.Fiber.fork ~sw @@ fun _ -> *) 419 + (* Vars.update_ui_state @@ fun _ -> *) 420 + (* TODO: Do i need this now that we have the concurrency safeguards?*) 421 + Picos_std_structured.Flock.fork(fun ()-> 420 422 Lwd.set Vars.ui_state.selected_revision revision; 421 - Global_funcs.update_views ()) 423 + Global_funcs.update_views ())) 422 424 ~custom_handler:(fun _ key -> handleKeys key) 423 425 in 424 426 let final_ui =
+44 -46
jj_tui/bin/jj_process.ml
··· 1 - open Eio 1 + open Picos_std_structured 2 + open Picos_std_sync 3 + open Picos_std_finally 2 4 3 5 module type t = sig 4 6 val jj : string list -> string 5 - val switch_to_process : Eio_unix.Stdenv.base -> string list -> Process.exit_status 7 + val switch_to_process : string list -> Unix.process_status 6 8 end 7 9 8 10 exception JJError of string * string ··· 10 12 module Make (Vars : Global_vars.Vars) = struct 11 13 (** Makes a new process that has acess to all input and output 12 14 This should be used for running other tui sub-programs *) 13 - let switch_to_process env command = 14 - Switch.run @@ fun sw -> 15 - let mgr = Eio.Stdenv.process_mgr env in 16 - let stdout = Eio.Stdenv.stdout env in 17 - let stdin = Eio.Stdenv.stdin env in 18 - let stderr = Eio.Stdenv.stderr env in 19 - let proc = Eio.Process.spawn ~sw mgr ~stderr ~stdin ~stdout command in 20 - proc |> Eio.Process.await 15 + let switch_to_process command = 16 + let stdout = Unix.stdout in 17 + let stdin = Unix.stdin in 18 + let stderr = Unix.stderr in 19 + let pid = Unix.create_process command.(0) command stdin stdout stderr in 20 + let _, status = Unix.waitpid [] pid in 21 + status 21 22 ;; 22 23 23 24 (* Ui_loop.run (Lwd.pure (W.printf "Hello world"));; *) 24 25 let cmdArgs cmd args = 25 - let Vars.{ cwd; mgr; _ } = Vars.get_eio_vars () in 26 - let out = 27 - Eio_process.run 28 - ~cwd 29 - ~process_mgr:mgr 30 - ~prog:cmd 31 - ~args 32 - ~f:(fun x -> 33 - (match x.exit_status with 34 - | `Exited i -> 35 - if i == 0 then `Ok (x.stdout, x.stderr) else `BadExit (i, x.stderr) 36 - | `Signaled i -> 37 - `BadExit (i, x.stderr)) 38 - |> Base.Or_error.return) 39 - () 26 + let stdout, stdin, stderr = 27 + Unix.open_process_args_full cmd (Array.of_list (cmd::args)) (Unix.environment ()) 40 28 in 41 - match out with 42 - | Error a -> 43 - Error (`EioErr a) 44 - | Ok (`Ok a) -> 45 - Ok a 46 - | Ok (`BadExit _ as a) -> 47 - Error a 29 + let out_content = In_channel.input_all stdout in 30 + let err_content = In_channel.input_all stderr in 31 + (* TODO: may need to wait before calling close*) 32 + let status = Unix.close_process_full (stdout, stdin, stderr) in 33 + let exit_code = 34 + match status with 35 + | Unix.WEXITED code -> 36 + code 37 + | Unix.WSIGNALED _ | Unix.WSTOPPED _ -> 38 + -1 39 + in 40 + match exit_code with 41 + | 0 -> 42 + Ok (out_content, err_content) 43 + | _ -> 44 + Error (`BadExit (exit_code, err_content ^ "\n" ^ out_content)) 48 45 ;; 49 46 50 47 (** Prevents concurrent acess to jj when running commands that cause snapshotting. 51 48 jj can get currupted otherwise *) 52 - let access_lock = Eio.Mutex.create () 49 + let access_lock = Mutex.create () 53 50 54 51 (** Run a jj command without outputting to the command_log. 55 52 @param ?snapshot=true ··· 64 61 else false 65 62 in 66 63 let res = 67 - cmdArgs 68 - "jj" 69 - (List.concat 70 - [ 71 - args 72 - ; (if snapshot then [] else [ "--ignore-working-copy" ]) 73 - ; (if color then [ "--color"; "always" ] else [ "--color"; "never" ]) 74 - ]) 64 + try 65 + cmdArgs 66 + "jj" 67 + (List.concat 68 + [ 69 + args 70 + ; (if snapshot then [] else [ "--ignore-working-copy" ]) 71 + ; (if color then [ "--color"; "always" ] else [ "--color"; "never" ]) 72 + ]) 73 + with 74 + | e -> 75 + Error (`Exception (Printexc.to_string e)) 75 76 in 76 77 if locked then Mutex.unlock access_lock; 77 78 res ··· 90 91 (JJError 91 92 ( "jj" :: args |> String.concat " " 92 93 , Printf.sprintf "Exited with code %i; Message:\n%s" code str )) 93 - | Error (`EioErr a) -> 94 + | Error (`Exception a) -> 94 95 raise 95 96 (JJError 96 97 ( "jj" :: args |> String.concat " " 97 - , Printf.sprintf 98 - "Error running jj process:\n%a" 99 - (fun _ -> Base.Error.to_string_hum) 100 - a )) 98 + , Printf.sprintf "Error running jj process:\n%s" a )) 101 99 ;; 102 100 103 101 let jj args =
+22 -30
jj_tui/bin/jj_ui.ml
··· 1 + open Picos_std_structured 1 2 open Notty 2 3 open Nottui 3 4 open Lwd_infix 4 5 open Global_funcs 5 6 open Jj_tui.Util 6 7 open Jj_tui 7 - 8 + module Pio = Picos_io 8 9 9 10 module Ui = struct 10 11 include Nottui.Ui ··· 27 28 let full_term_sized_background = 28 29 let$ term_width, term_height = Lwd.get Vars.term_width_height in 29 30 Notty.I.void term_width term_height |> Nottui.Ui.atom 30 - let blue= I.string A.((fg blue)++(bg blue)++(st bold)) "blue" 31 31 ;; 32 + 33 + let blue = I.string A.(fg blue ++ bg blue ++ st bold) "blue" 32 34 33 35 let _quitButton = 34 36 W.button (Printf.sprintf "quit ") (fun () -> Vars.quit $= true) |> Lwd.pure ··· 70 72 W.string message 71 73 |> Lwd.pure 72 74 |> W.Box.box 73 - |>$ Ui.resize 74 - ~sw:1 75 - ~sh:1 76 - ~mw:10000 77 - ~mh:10000 78 - ~crop:W.neutral_grav 79 - ~pad:W.neutral_grav 75 + |>$ Ui.resize ~sw:1 ~sh:1 ~mw:10000 ~mh:10000 ~crop:W.neutral_grav ~pad:W.neutral_grav 80 76 |> inputs 81 77 ;; 82 78 83 79 (** The primary view for the UI with the file_view graph_view and summary*) 84 - let main_view ~sw = 80 + let main_view = 85 81 let file_focus = Focus.make () in 86 82 let graph_focus = Focus.make () in 87 83 Focus.request graph_focus; ··· 92 88 (*left side window stack*) 93 89 W.vbox 94 90 [ 95 - File_view.file_view sw () 91 + File_view.file_view file_focus 96 92 |>$ Ui.resize ~w:5 ~sw:1 ~mw:1000 97 93 |> W.Box.focusable ~focus:file_focus ~pad_h:0 ~pad_w:1 98 - ; Graph_view.graph_view ~sw () 94 + ; Graph_view.graph_view () 99 95 |>$ Ui.resize ~sh:3 ~w:5 ~sw:1 ~mw:1000 ~h:10 ~mh:1000 100 96 |> W.Box.focusable ~focus:graph_focus ~pad_h:0 ~pad_w:1 101 - ; W.Scroll.area(ui_state.jj_branches $-> Ui.atom) 97 + ; W.Scroll.area (ui_state.jj_branches $-> Ui.atom) 102 98 |> W.is_focused ~focus:branch_focus (fun ui focused -> 103 99 ui 104 100 |> Ui.keyboard_area (function ··· 116 112 |> W.Box.focusable ~focus:branch_focus ~pad_h:0 ~pad_w:1 117 113 ] 118 114 ; (*Right side summary/status/fileinfo view*) 119 - (let$* file_focus = file_focus |> Focus.status in 120 - if file_focus |> Focus.has_focus 121 - then 122 - let$ status = File_view.file_status () in 123 - status |> AnsiReverse.colored_string |> Ui.atom 124 - else (fun x -> x |> Ui.atom) <-$ ui_state.jj_show) 115 + ui_state.jj_show 116 + $-> Ui.atom 125 117 |> W.Scroll.area 126 118 (* let mw=Int.max (Ui.layout_max_width ui) 100 in *) 127 119 |>$ Ui.resize ~w:0 ~sh:3 ~sw:2 ~mw:10000 ~mh:10000 ··· 131 123 (*These outer prompts can popup and show them selves over the main view*) 132 124 |> W.Overlay.text_prompt ~char_count:true ~show_prompt_var:ui_state.show_prompt 133 125 |> W.Overlay.popup ~show_popup_var:ui_state.show_popup 134 - |> W.Overlay.selection_list_prompt_filterable ~show_prompt_var:(ui_state.show_string_selection_prompt) 126 + |> W.Overlay.selection_list_prompt_filterable 127 + ~show_prompt_var:ui_state.show_string_selection_prompt 135 128 |> inputs 136 129 ;; 137 130 ··· 147 140 |> inputs 148 141 ;; 149 142 150 - let mainUi ~sw env = 143 + let mainUi () = 151 144 (*we want to initialize our states and keep them up to date*) 152 145 match check_startup () with 153 146 | `Good -> 154 147 update_status ~cause_snapshot:true (); 155 - Eio.Fiber.fork_daemon ~sw (fun _ -> 156 - let clock = Eio.Stdenv.clock env in 148 + Flock.fork (fun () -> 157 149 while true do 158 - Eio.Time.sleep clock 5.0; 150 + Picos.Fiber.sleep ~seconds:5.0; 159 151 (*we need to lock this becasue we could end up updating while the ui is rendering*) 160 - Vars.render_mutex |> Eio.Mutex.lock; 161 - update_status ~cause_snapshot:true (); 162 - Vars.render_mutex |> Eio.Mutex.unlock 152 + (* Vars.render_mutex |> Eio.Mutex.lock; *) 153 + update_status ~cause_snapshot:true () 154 + (* Vars.render_mutex |> Eio.Mutex.unlock *) 163 155 done; 164 - `Stop_daemon); 156 + ()); 165 157 let$* running = Lwd.get ui_state.view in 166 158 (match running with 167 159 | `Cmd_I cmd -> ··· 169 161 Lwd.set ui_state.view @@ `RunCmd cmd; 170 162 full_term_sized_background 171 163 | `RunCmd cmd -> 172 - Jj_widgets.interactive_process env ("jj" :: cmd) 164 + Jj_widgets.interactive_process ("jj" :: cmd) 173 165 | `Main -> 174 - W.keyboard_tabs [ ("Main", fun _ -> main_view ~sw); "Op log", log_view ]) 166 + W.keyboard_tabs [ ("Main", fun _ -> main_view); "Op log", log_view ]) 175 167 | (`CantStartProcess | `NotInRepo | `OtherError _) as other -> 176 168 render_startup_error other 177 169 ;;
+5 -4
jj_tui/bin/jj_widgets.ml
··· 139 139 140 140 (** Start a process that will take full control of both stdin and stdout. 141 141 This is used for interactive diffs and such*) 142 - let interactive_process env cmd = 142 + let interactive_process cmd = 143 143 let post_change new_view = 144 144 Global_funcs.update_status (); 145 145 Lwd.set ui_state.view new_view 146 146 in 147 - let exit_status_to_str y = 148 - match match y with `Exited x -> x | `Signaled x -> x with 147 + let exit_status_to_str (y : Unix.process_status) = 148 + let open Unix in 149 + match match y with WSTOPPED x -> x | WEXITED x -> x | WSIGNALED x -> x with 149 150 | 0 -> 150 151 "success" 151 152 | 1 -> ··· 153 154 | a -> 154 155 Printf.sprintf "unknown code %d" a 155 156 in 156 - let res = switch_to_process env cmd in 157 + let res = switch_to_process (cmd |> Array.of_list) in 157 158 let$ ui = 158 159 W.vbox 159 160 [
+17 -11
jj_tui/bin/main.ml
··· 1 - open Eio.Std 2 1 open Lwd_infix 3 2 module Vars = Global_vars.Vars 4 3 open Nottui 5 4 module Jj_ui = Jj_ui.Make (Vars) 6 - 5 + open Picos_std_structured 7 6 8 7 let ui_loop ~quit ~term root = 9 8 print_endline "starting loop"; ··· 22 21 let rec loop () = 23 22 if not (Lwd.peek quit) 24 23 then ( 24 + let start_time = Sys.time () in 25 25 let term_width, term_height = Notty_unix.Term.size (Vars.get_term ()) in 26 26 let prev_term_width, prev_term_height = Lwd.peek Vars.term_width_height in 27 27 if term_width <> prev_term_width || term_height <> prev_term_height 28 28 then Lwd.set Vars.term_width_height (term_width, term_height); 29 - Vars.render_mutex |> Eio.Mutex.lock; 29 + (* Vars.render_mutex |> Eio.Mutex.lock; *) 30 30 Nottui.Ui_loop.step 31 31 ~process_event:true 32 - ~timeout:0.05 32 + ~timeout:0.01 33 33 ~renderer 34 34 term 35 35 (Lwd.observe @@ root); 36 - Vars.render_mutex |> Eio.Mutex.unlock; 37 - Eio.Fiber.yield (); 36 + (* Vars.render_mutex |> Eio.Mutex.unlock; *) 37 + let end_time = Sys.time () in 38 + let elapsed = end_time -. start_time in 39 + let sleep_time = max 0.01 (0.01 -. elapsed) in 40 + Unix.sleepf sleep_time; 41 + Picos.Fiber.yield (); 38 42 loop ()) 39 43 in 40 44 loop () 41 45 ;; 42 46 43 47 (*TODO:For hosting a subprocess i should look into using EIO and Ui_loop.step like some of the other libraries built with nottui*) 44 - let start_ui env = 45 - Switch.run @@ fun sw -> 48 + let start_ui () = 46 49 (*initialse the state*) 47 50 let term = Notty_unix.Term.create () in 48 51 Vars.term := Some term; 49 - Vars.set_eio_env env; 50 - ui_loop ~quit:Vars.quit ~term (Jj_ui.mainUi ~sw env) 52 + ui_loop ~quit:Vars.quit ~term (Jj_ui.mainUi ()) 51 53 ;; 52 54 53 - let start () = Eio_main.run @@ fun env -> Fiber.all [ (fun _ -> start_ui env) ];; 55 + let start () = 56 + Picos_mux_multififo.run_on ~n_domains:8 (fun _ -> 57 + Flock.join_after @@ fun () -> start_ui ()) 58 + (* Picos_mux_multififo.run (fun () -> Flock.join_after (fun _ -> start_ui ())) *) 59 + ;; 54 60 55 61 start ()
+30 -21
jj_tui/lib/ansiReverse.ml
··· 146 146 It parses the escape codes and then creates notty images from that by applying the styles*) 147 147 let ansi_string_to_image ?(extra_attr = A.empty) str = 148 148 let str = 149 - (* replace any carrriage returns becasue notty doesn't know what to do with them*) 150 - Base.String.Search_pattern.replace_all 151 - (Base.String.Search_pattern.create "\r\n") 152 - ~in_:str 153 - ~with_:"\n" 154 - |> Base.String.Search_pattern.replace_all 155 - (Base.String.Search_pattern.create "\r") 156 - ~with_:"\n" 157 - (*tabs cause issues too*) 158 - |> Base.String.Search_pattern.replace_all 159 - (Base.String.Search_pattern.create "\t") 160 - ~with_:" " 161 - (*delete control char*) 162 - |> Base.String.Search_pattern.replace_all 163 - (Base.String.Search_pattern.create "\u{7f}") 164 - ~with_:" " 165 - (*replace form feed with a symbol: https://codepoints.net/U+000C?lang=en*) 166 - |> Base.String.Search_pattern.replace_all 167 - (Base.String.Search_pattern.create " ") 168 - ~with_:"↡" 149 + let buffer = Buffer.create (String.length str) in 150 + let last_char = ref '\000' in 151 + String.iter 152 + (fun c -> 153 + match c with 154 + | '\r' -> 155 + last_char := '\r' 156 + | '\n' when !last_char <> '\r' -> 157 + Buffer.add_char buffer '\n' 158 + | '\n' -> 159 + Buffer.add_char buffer '\n'; 160 + last_char := '\000' 161 + | '\t' -> 162 + Buffer.add_string buffer " " 163 + | '\x7F' -> 164 + Buffer.add_string buffer " " 165 + | '\x0C' -> 166 + Buffer.add_string buffer "↡" 167 + | _ -> 168 + Buffer.add_char buffer c) 169 + str; 170 + Buffer.contents buffer 169 171 in 170 172 match Parser.parse_ansi_escape_codes str with 171 173 | Error a -> ··· 198 200 ;; 199 201 200 202 (** Same as ansi_string_to_image, but can throw if a parsing error occurs. I have not seen it fail, should be safe. *) 201 - let colored_string ?extra_attr s = s |> ansi_string_to_image ?extra_attr |> Result.get_ok 203 + let colored_string ?extra_attr ?(max_length = 50000) s = 204 + let truncated_s = 205 + if String.length s > max_length 206 + then String.sub s 0 max_length ^ "\n...truncated" 207 + else s 208 + in 209 + truncated_s |> ansi_string_to_image ?extra_attr |> Result.get_ok 210 + ;;
+11826
jj_tui/testing/oplog
··· 1 + @ 9205cf08044f eli@eli-nixos-xps now, lasted 12 milliseconds 2 + │ snapshot working copy 3 + │ args: jj op log 4 + ○ 460252461519 eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 5 + │ snapshot working copy 6 + │ args: jj log '\'\'' --color never 7 + ○ 964ae29c7913 eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 8 + │ squash commits into a0ce6fa0be8e64263eadcad52b75a00a18a8885b 9 + │ args: jj squash -u --keep-emptied --from ysqoykszlsnxrywolxlqkoymyvpqlvlk --into ysqoykszlsnxrywolxlqkoymyvpqlvlk- out --color always 10 + ○ bba8e8d57c47 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 11 + │ next: 2363ae5ab231 -> editing a0ce6fa0be8e 12 + │ args: jj next --color always 13 + ○ 7cb2c2e8a585 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 14 + │ prev: a0ce6fa0be8e -> editing 2363ae5ab231 15 + │ args: jj prev --color always 16 + ○ 335ba3266871 eli@eli-nixos-xps 2 weeks ago, lasted 6 milliseconds 17 + │ squash commits into b338bc8dc0c21b91b32a44f623c605d71b320ad2 18 + │ args: jj squash -u --keep-emptied --from qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --into 'qtosxvrzslqvtlqvtqknmwrnkvwwxtxv+' out --color always 19 + ○ e9e214594767 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 20 + │ squash commits into 53d1cc4fa2102e8b979b2cb1afc47bc94d6706ce 21 + │ args: jj squash -u --keep-emptied --from ttnnqpsnpmzyzyknxuyulowqupkuosln --into rp other.txt --color always 22 + ○ ed1435a56fea eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 23 + │ squash commits into 0ed6f400a7fe9f18bd6be9191566b843feeb3de8 24 + │ args: jj squash -u --from quylxlopoutqqnnmvqnkvonqorumqlmr --into tt other.txt --color always 25 + ○ 66d14904c141 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 26 + │ squash commits into 67658784491c5587b0540232d5c8568e7144783c 27 + │ args: jj squash -u --from qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --into qu other.txt --color always 28 + ○ 5eeb2c173e09 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 29 + │ snapshot working copy 30 + │ args: jj log --color always 31 + ○ 09dc515a1cc8 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 32 + │ edit commit bf02b5576646f44cf67abc49b67f4b45a42097ef 33 + │ args: jj edit qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --color always 34 + ○ a995cd747985 eli@eli-nixos-xps 2 weeks ago, lasted 2 milliseconds 35 + │ squash commits into 1cfd1811b6dcadb6acd9477bc12819199e8e3a0e 36 + │ args: jj squash -u --from npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --into qt out --color always 37 + ○ 56762757775f eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 38 + │ edit commit 67658784491c5587b0540232d5c8568e7144783c 39 + │ args: jj edit quylxlopoutqqnnmvqnkvonqorumqlmr --color always 40 + ○ 29c7a360dccc eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 41 + │ next: 3bda68c2a942 -> 693b4825353b 42 + │ args: jj next --color always 43 + ○ 6be9eb402e9b eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 44 + │ next: a438c4f17590 -> d91f530fb94d 45 + │ args: jj next --color always 46 + ○ 9e6438c6722d eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 47 + │ next: 5009a23d4bdd -> 1cfd1811b6dc 48 + │ args: jj next --color always 49 + ○ 0c8393d14206 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 50 + │ prev: 906d4922d561 -> 67658784491c 51 + │ args: jj prev --color always 52 + ○ 98c9055f93b0 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 53 + │ new empty commit 54 + │ args: jj new qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --color always 55 + ○ 3219ec9a8351 eli@eli-nixos-xps 2 weeks ago, lasted 5 milliseconds 56 + │ squash commits into 7ef1b7744065cc261eb1026aed0e1407fe422de9 57 + │ args: jj squash -u --from oyzsrxumlmpqkkstmvxvrpqoxlkyworx --into 'oyzsrxumlmpqkkstmvxvrpqoxlkyworx+' out --color always 58 + ○ b5e11fc618de eli@eli-nixos-xps 2 weeks ago, lasted 6 milliseconds 59 + │ squash commits into 3087be21cfbf5ad78bb1f771dd6523ef8d7562b8 60 + │ args: jj squash -u --from kzywtkmuupzznplpprrykuvlwmkqmrvr --into 'kzywtkmuupzznplpprrykuvlwmkqmrvr+' out --color always 61 + ○ 01271a3c89ac eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 62 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 63 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 64 + ○ fd0e6b1507f0 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 65 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 66 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 67 + ○ 7dc6666b9f38 eli@eli-nixos-xps 2 weeks ago, lasted 10 milliseconds 68 + │ new empty commit 69 + │ args: jj new -r kzywtkmuupzznplpprrykuvlwmkqmrvr --color always 70 + ○ 248099eb8db7 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 71 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 72 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 73 + ○ 83a60fc53360 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 74 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 75 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 76 + ○ 37e031891dc1 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 77 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 78 + │ args: jj edit uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 79 + ○ 3b6e3661144b eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 80 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 81 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 82 + ○ a2462a97cdf8 eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 83 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 84 + │ args: jj edit uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 85 + ○ 4c95b3be64a6 eli@eli-nixos-xps 2 months ago, lasted 10 milliseconds 86 + │ new empty commit 87 + │ args: jj new uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 88 + ○ e19d8e977392 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 89 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 90 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 91 + ○ c6586be5eae9 eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 92 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 93 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 94 + ○ 9530da5f7cbe eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 95 + │ edit commit 666abfb74435de95464dc22f07bf32dde888ad98 96 + │ args: jj edit npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --color always 97 + ○ 28e31908331a eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 98 + │ edit commit 3087be21cfbf5ad78bb1f771dd6523ef8d7562b8 99 + │ args: jj edit oyzsrxumlmpqkkstmvxvrpqoxlkyworx --color always 100 + ○ fa935a3d0a33 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 101 + │ edit commit 666abfb74435de95464dc22f07bf32dde888ad98 102 + │ args: jj edit npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --color always 103 + ○ 888e3751d383 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 104 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 105 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 106 + ○ 78e092d9b74c eli@eli-nixos-xps 2 months ago, lasted 9 milliseconds 107 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 108 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 109 + ○ 16d6fad68ead eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 110 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 111 + │ args: jj edit uv --color always 112 + ○ fc2e02323b8f eli@eli-nixos-xps 3 months ago, lasted 7 milliseconds 113 + │ squash commits into 2e166a9e68b021c23215e5ff5bf668eec02e3a54 114 + │ args: jj squash -u --from @ --into uv _build/log --color always 115 + ○ ad25412d8de5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 116 + │ edit commit 0af36e0760fd3ebbb6499d4acf0bcb6b27ee34d2 117 + │ args: jj edit w --color always 118 + ○ 2d5c8cae1b99 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 119 + │ next: 3087be21cfbf -> editing 666abfb74435 120 + │ args: jj next --edit --color always 121 + ○ 786a9fa74050 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 122 + │ prev: 666abfb74435 -> editing 3087be21cfbf 123 + │ args: jj prev --edit --color always 124 + ○ a8165c930747 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 125 + │ next: 3087be21cfbf -> editing 666abfb74435 126 + │ args: jj next --edit --color always 127 + ○ dcdfeee35ec6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 128 + │ next: 712823596dcc -> editing 3087be21cfbf 129 + │ args: jj next --edit --color always 130 + ○ 0aa5ae82702f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 131 + │ prev: 3087be21cfbf -> editing 712823596dcc 132 + │ args: jj prev --edit --color always 133 + ○ 1b13131d6cc4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 134 + │ prev: 666abfb74435 -> editing 3087be21cfbf 135 + │ args: jj prev --edit --color always 136 + ○ 258637f53d41 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 137 + │ prev: 113ab1626900 -> editing 666abfb74435 138 + │ args: jj prev --edit --color always 139 + ○ 11912376e984 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 140 + │ prev: 2e166a9e68b0 -> editing 113ab1626900 141 + │ args: jj prev --edit --color always 142 + ○ ff890e6e6592 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 143 + │ prev: 0af36e0760fd -> editing 2e166a9e68b0 144 + │ args: jj prev --edit --color always 145 + ○ 2b4593a858d2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 146 + │ next: 2e166a9e68b0 -> editing 0af36e0760fd 147 + │ args: jj next --edit --color always 148 + ○ d17a1e590a3f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 149 + │ prev: 0af36e0760fd -> editing 2e166a9e68b0 150 + │ args: jj prev --edit --color always 151 + ○ f422c0c5c3de eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 152 + │ snapshot working copy 153 + │ args: jj show -s --color-words --color always 154 + ○ 7ddb663b74b4 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 155 + │ new empty commit 156 + │ args: jj new --color always 157 + ○ 76b7deff03c6 eli@eli-nixos-xps 3 months ago, lasted 4 seconds 158 + │ squash commits into 83c9fe8f3609bc4f130878c3ff2ef14e9d3bfdcf 159 + │ args: jj squash -i --into nu 160 + ○ 03329123583b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 161 + │ edit commit db6379e864d55c794c0b4b5d13d4e0cc5dfa0739 162 + │ args: jj edit w --color always 163 + ○ 5f0093686ca2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 164 + │ describe commit 2b39b40aae4f99d771d091407d90ec9649e080a3 165 + │ args: jj describe -m bup --color always 166 + ○ 20be04cfc0e9 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 167 + │ new empty commit 168 + │ args: jj new --color always 169 + ○ d3b6d5e3d064 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 170 + │ prev: d01037ae2e80 -> editing 666abfb74435 171 + │ args: jj prev --edit --color always 172 + ○ 349e673347fb eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 173 + │ new empty commit 174 + │ args: jj new --color always 175 + ○ 2bfb4079736b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 176 + │ next: 3087be21cfbf -> editing 666abfb74435 177 + │ args: jj next --edit --color always 178 + ○ 0c11364097e3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 179 + │ prev: 666abfb74435 -> editing 3087be21cfbf 180 + │ args: jj prev --color always 181 + ○ 3e7b4b0cc939 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 182 + │ prev: 113ab1626900 -> editing 666abfb74435 183 + │ args: jj prev --edit --color always 184 + ○ 7d4c36d94b56 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 185 + │ prev: db6379e864d5 -> editing 113ab1626900 186 + │ args: jj prev --edit 187 + ○ fa424cf68eeb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 188 + │ next: 113ab1626900 -> editing db6379e864d5 189 + │ args: jj next --edit 190 + ○ 79b8e2bc30ef eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 191 + │ next: 666abfb74435 -> editing 113ab1626900 192 + │ args: jj next --edit 193 + ○ 1587355b6c5f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 194 + │ next: 3087be21cfbf -> editing 666abfb74435 195 + │ args: jj next --edit 196 + ○ c278f0fa21bb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 197 + │ next: 712823596dcc -> editing 3087be21cfbf 198 + │ args: jj next --edit 199 + ○ 8f753eb3a9ac eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 200 + │ prev: 3087be21cfbf -> editing 712823596dcc 201 + │ args: jj prev --edit --color always 202 + ○ 15bc149a7d8c eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 203 + │ prev: 666abfb74435 -> editing 3087be21cfbf 204 + │ args: jj prev --edit --color always 205 + ○ e30069685cf9 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 206 + │ prev: 113ab1626900 -> editing 666abfb74435 207 + │ args: jj prev --edit --color always 208 + ○ 7b1edde5af99 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 209 + │ prev: db6379e864d5 -> editing 113ab1626900 210 + │ args: jj prev --edit --color always 211 + ○ 45705d925f9a eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 212 + │ next: 113ab1626900 -> editing db6379e864d5 213 + │ args: jj next --edit --color always 214 + ○ a8db560c9d0c eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 215 + │ snapshot working copy 216 + │ args: jj show -s --color-words --color always 217 + ○ 429820142033 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 218 + │ create branch bbbbb pointing to commit 9898af24583487a77e38b1d89a7ccbc8cb804ce6 219 + │ args: jj branch create bbbbb --color always 220 + ○ 5ba2dfbe66ce eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 221 + │ next: 666abfb74435 -> editing 9898af245834 222 + │ args: jj next --edit --color always 223 + ○ b7b58d162e03 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 224 + │ next: 3087be21cfbf -> editing 666abfb74435 225 + │ args: jj next --edit --color always 226 + ○ 275580757e74 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 227 + │ next: 712823596dcc -> editing 3087be21cfbf 228 + │ args: jj next --edit --color always 229 + ○ 6c6e1dc6b352 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 230 + │ next: d91f530fb94d -> editing 712823596dcc 231 + │ args: jj next --edit --color always 232 + ○ 57ed5b2072ff eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 233 + │ next: 1cfd1811b6dc -> editing d91f530fb94d 234 + │ args: jj next --edit --color always 235 + ○ b57f64c76216 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 236 + │ next: 67658784491c -> editing 1cfd1811b6dc 237 + │ args: jj next --edit --color always 238 + ○ 8a8dea05f3d2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 239 + │ next: 0ed6f400a7fe -> editing 67658784491c 240 + │ args: jj next --edit --color always 241 + ○ 1994506c5e3a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 242 + │ prev: 67658784491c -> editing 0ed6f400a7fe 243 + │ args: jj prev --edit --color always 244 + ○ 9bf9f1421a3b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 245 + │ prev: 1cfd1811b6dc -> editing 67658784491c 246 + │ args: jj prev --edit --color always 247 + ○ e0bb9d322ba2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 248 + │ create branches this, is, a, branch pointing to commit 1cfd1811b6dcadb6acd9477bc12819199e8e3a0e 249 + │ args: jj branch create this is a branch --color always 250 + ○ 252138ae1cd8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 251 + │ next: 67658784491c -> editing 1cfd1811b6dc 252 + │ args: jj next --edit --color always 253 + ○ e99e164440b9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 254 + │ next: 0ed6f400a7fe -> editing 67658784491c 255 + │ args: jj next --edit --color always 256 + ○ 25bd3735f935 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 257 + │ next: 53d1cc4fa210 -> editing 0ed6f400a7fe 258 + │ args: jj next --edit --color always 259 + ○ 559ec5226325 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 260 + │ next: 3c4573dda23c -> editing 53d1cc4fa210 261 + │ args: jj next --edit --color always 262 + ○ 2ab188cdcdc0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 263 + │ next: 2374647001dd -> editing 3c4573dda23c 264 + │ args: jj next --edit --color always 265 + ○ efe90e27f405 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 266 + │ create branches hi, there, new pointing to commit 2374647001dd1762b4e0f8d0db8be208bb360cda 267 + │ args: jj branch create hi there new --color always 268 + ○ 4bc60dab857e eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 269 + │ create branch hi there new pointing to commit 2374647001dd1762b4e0f8d0db8be208bb360cda 270 + │ args: jj branch create 'hi there new' --color always 271 + ○ 0414a317e206 eli@eli-nixos-xps 3 months ago, lasted 20 milliseconds 272 + │ parallelize 2 commits 273 + │ args: jj parallelize mz u 274 + ○ a305f317ec92 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 275 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 276 + │ args: jj next --edit --color always 277 + ○ 4fedbeb42e62 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 278 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 279 + │ args: jj next --edit --color always 280 + ○ 15667da8f18b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 281 + │ next: 3eae36a2605b -> editing a32d34abf5b2 282 + │ args: jj next --edit --color always 283 + ○ 2f268bb632ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 284 + │ next: d648d9dc91ca -> editing 3eae36a2605b 285 + │ args: jj next --edit --color always 286 + ○ e940c6193eaf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 287 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 288 + │ args: jj prev --edit --color always 289 + ○ 84845cc4b86f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 290 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 291 + │ args: jj prev --edit --color always 292 + ○ bc45b5036023 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 293 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 294 + │ args: jj prev --edit --color always 295 + ○ bb60f151dd46 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 296 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 297 + │ args: jj prev --edit --color always 298 + ○ 1ad26ac4b641 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 299 + │ prev: e817aa28318f -> editing d24fcbff9fa8 300 + │ args: jj prev --edit --color always 301 + ○ 4a0ce54a4475 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 302 + │ prev: bf3bd93157fe -> editing e817aa28318f 303 + │ args: jj prev --edit --color always 304 + ○ 4a8940cbcec2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 305 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 306 + │ args: jj prev --edit --color always 307 + ○ 3ec11bf5422a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 308 + │ next: bf3bd93157fe -> editing cf157ef807a2 309 + │ args: jj next --edit --color always 310 + ○ ec63814f5707 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 311 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 312 + │ args: jj prev --edit --color always 313 + ○ faddc25ac42b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 314 + │ prev: 156f77d97c30 -> editing cf157ef807a2 315 + │ args: jj prev --edit --color always 316 + ○ 31e587b2be70 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 317 + │ next: cf157ef807a2 -> editing 156f77d97c30 318 + │ args: jj next --edit --color always 319 + ○ 9d6d4ab6cc14 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 320 + │ prev: 156f77d97c30 -> editing cf157ef807a2 321 + │ args: jj prev --edit --color always 322 + ○ f6b9368a4746 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 323 + │ next: cf157ef807a2 -> editing 156f77d97c30 324 + │ args: jj next --edit --color always 325 + ○ 563fd20a458b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 326 + │ prev: 156f77d97c30 -> editing cf157ef807a2 327 + │ args: jj prev --edit --color always 328 + ○ 1adb6b2f0988 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 329 + │ next: cf157ef807a2 -> editing 156f77d97c30 330 + │ args: jj next --edit --color always 331 + ○ 816a49fa1a7f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 332 + │ prev: 156f77d97c30 -> editing cf157ef807a2 333 + │ args: jj prev --edit --color always 334 + ○ a22b90a04709 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 335 + │ prev: b774cec816ba -> editing 156f77d97c30 336 + │ args: jj prev --edit --color always 337 + ○ 57d7a57bf61b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 338 + │ prev: a39ba96d6e4a -> editing b774cec816ba 339 + │ args: jj prev --edit --color always 340 + ○ c799390764ff eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 341 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 342 + │ args: jj prev --edit --color always 343 + ○ 43d5156255fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 344 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 345 + │ args: jj prev --edit --color always 346 + ○ 08b198fcf701 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 347 + │ next: 48d266b0f74f -> editing cc8d0eb60492 348 + │ args: jj next --edit --color always 349 + ○ 4d554590ef6a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 350 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 351 + │ args: jj next --edit --color always 352 + ○ d65b71043139 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 353 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 354 + │ args: jj prev --edit --color always 355 + ○ 2d6b4a603251 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 356 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 357 + │ args: jj prev --edit --color always 358 + ○ 9f57bcc4b3db eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 359 + │ prev: 950186d3e70f -> editing cc8d0eb60492 360 + │ args: jj prev --edit --color always 361 + ○ 08c379b74531 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 362 + │ prev: 39cdf2fc7a87 -> editing 950186d3e70f 363 + │ args: jj prev --edit --color always 364 + ○ d396260f8c53 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 365 + │ prev: 80a38dbcd596 -> editing 39cdf2fc7a87 366 + │ args: jj prev --edit --color always 367 + ○ fd71c4dd2d7b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 368 + │ snapshot working copy 369 + │ args: jj show -s --color-words --color always 370 + ○ e632f97d2fe8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 371 + │ snapshot working copy 372 + │ args: jj show -s --color-words --color always 373 + ○ 6f13cdbeed87 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 374 + │ next: 39cdf2fc7a87 -> editing fd28c730f4d3 375 + │ args: jj next 376 + ○ b535d7aa56f1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 377 + ├─╮ resolve concurrent operations 378 + │ │ args: jj workspace update-stale 379 + ○ │ 9450c37c8d8b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 380 + │ │ prev: 00f79c0a5121 -> editing 39cdf2fc7a87 381 + │ │ args: jj prev --edit --ignore-working-copy 382 + │ ○ 4f0292379492 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 383 + ├─╯ snapshot working copy 384 + │ args: jj workspace update-stale 385 + ○ a5a9b2acc7f1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 386 + │ prev: 57e7b64925e9 -> editing 00f79c0a5121 387 + │ args: jj prev --edit --ignore-working-copy 388 + ○ bb620e294aa3 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 389 + │ next: f32811cc6777 -> 00f79c0a5121 390 + │ args: jj next 391 + ○ ee63ce2ef6de eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 392 + │ next: ffca284d7e01 -> 39cdf2fc7a87 393 + │ args: jj next 394 + ○ 14ae25d705cc eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 395 + │ prev: 00f79c0a5121 -> 950186d3e70f 396 + │ args: jj prev 397 + ○ ec9b85fc9bf6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 398 + │ next: 39cdf2fc7a87 -> editing 00f79c0a5121 399 + │ args: jj next 400 + ○ 0ecc7d7b6eff eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 401 + │ describe commit cbdf80f7ada85a7da05ab201579988efc06a0c3b 402 + │ args: jj desc -m prev 403 + ○ 76c126ec0e56 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 404 + │ prev: d0cf97fd3caf -> editing cbdf80f7ada8 405 + │ args: jj prev --edit 406 + ○ 4502b37c14d6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 407 + │ prev: a0ab6bfb0a4e -> editing d0cf97fd3caf 408 + │ args: jj prev --edit 409 + ○ 2bbc4cea9b9f eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 410 + │ next: 6c2f0428c83c -> d0cf97fd3caf 411 + │ args: jj next 412 + ○ a5bc30a9ee58 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 413 + │ next: 04e66f53c455 -> cbdf80f7ada8 414 + │ args: jj next 415 + ○ 022a9fc105fa eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 416 + │ prev: d0cf97fd3caf -> 950186d3e70f 417 + │ args: jj prev 418 + ○ f92f8686a067 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 419 + │ next: cbdf80f7ada8 -> editing d0cf97fd3caf 420 + │ args: jj next --edit 421 + ○ fd684cdc80dd eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 422 + │ snapshot working copy 423 + │ args: jj log 424 + ○ b71f4f2ce3fd eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 425 + │ prev: 538360f87be6 -> editing 2739bea98abf 426 + │ args: jj prev --edit 427 + ○ 26f2982f8ff4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 428 + │ next: 2739bea98abf -> editing 538360f87be6 429 + │ args: jj next 430 + ○ c3a21beee0e2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 431 + │ prev: 538360f87be6 -> editing 2739bea98abf 432 + │ args: jj prev --edit 433 + ○ 54e2ac2eef1d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 434 + │ next: 2739bea98abf -> editing 538360f87be6 435 + │ args: jj next --edit 436 + ○ 849604ee1706 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 437 + │ prev: c8595354cb7a -> editing 2739bea98abf 438 + │ args: jj prev --edit 439 + ○ 48ddf5b28eb2 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 440 + │ next: f70c33fb46e9 -> 2739bea98abf 441 + │ args: jj next 442 + ○ 3613dac0c79d eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 443 + │ prev: 538360f87be6 -> 950186d3e70f 444 + │ args: jj prev 445 + ○ ae8799cecf51 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 446 + │ snapshot working copy 447 + │ args: jj log 448 + ○ 43a812c24ca6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 449 + │ next: 2739bea98abf -> editing e629aa0beb6f 450 + │ args: jj next --edit --color always 451 + ○ e9eb4884d047 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 452 + │ next: 950186d3e70f -> editing 2739bea98abf 453 + │ args: jj next --edit --color always 454 + ○ a1c3280321ff eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 455 + │ next: cc8d0eb60492 -> editing 950186d3e70f 456 + │ args: jj next --edit --color always 457 + ○ 9e4d57b19352 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 458 + │ next: 48d266b0f74f -> editing cc8d0eb60492 459 + │ args: jj next --edit --color always 460 + ○ 1f8e3257b5e8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 461 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 462 + │ args: jj next --edit --color always 463 + ○ ef285e8c067b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 464 + │ next: b774cec816ba -> editing a39ba96d6e4a 465 + │ args: jj next --edit --color always 466 + ○ 5e776f76b494 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 467 + │ next: 156f77d97c30 -> editing b774cec816ba 468 + │ args: jj next --edit --color always 469 + ○ c02974809780 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 470 + │ next: cf157ef807a2 -> editing 156f77d97c30 471 + │ args: jj next --edit --color always 472 + ○ 6aeefa8a4593 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 473 + │ next: bf3bd93157fe -> editing cf157ef807a2 474 + │ args: jj next --edit --color always 475 + ○ c78dee0f42ed eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 476 + │ next: e817aa28318f -> editing bf3bd93157fe 477 + │ args: jj next --edit --color always 478 + ○ 00ce5e4e97e9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 479 + │ next: d24fcbff9fa8 -> editing e817aa28318f 480 + │ args: jj next --edit --color always 481 + ○ a0e5c8fb9c9c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 482 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 483 + │ args: jj next --edit --color always 484 + ○ 0ce3eca5b8a2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 485 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 486 + │ args: jj next --edit --color always 487 + ○ 16680f6f40a0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 488 + │ next: 3eae36a2605b -> editing a32d34abf5b2 489 + │ args: jj next --edit --color always 490 + ○ 04dcf237dd58 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 491 + │ next: d648d9dc91ca -> editing 3eae36a2605b 492 + │ args: jj next --edit --color always 493 + ○ 86d9781ce752 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 494 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 495 + │ args: jj next --edit --color always 496 + ○ e6ad5d901058 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 497 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 498 + │ args: jj next --edit --color always 499 + ○ 4b4c46cc97a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 500 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 501 + │ args: jj next --edit --color always 502 + ○ af6616a13a41 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 503 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 504 + │ args: jj next --edit --color always 505 + ○ 15c89fa2923d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 506 + │ next: 584796aea9d8 -> editing 8e967a8ded42 507 + │ args: jj next --edit --color always 508 + ○ 71245d17ae92 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 509 + │ next: 812a118be9e4 -> editing 584796aea9d8 510 + │ args: jj next --edit --color always 511 + ○ d8d83a770ba0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 512 + │ prev: 584796aea9d8 -> editing 812a118be9e4 513 + │ args: jj prev --edit --color always 514 + ○ a7dfe070528d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 515 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 516 + │ args: jj prev --edit --color always 517 + ○ 8f6203d67481 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 518 + │ next: 584796aea9d8 -> editing 8e967a8ded42 519 + │ args: jj next --edit --color always 520 + ○ 3844c0accb43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 521 + │ next: 812a118be9e4 -> editing 584796aea9d8 522 + │ args: jj next --edit --color always 523 + ○ bf03f81bd215 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 524 + │ next: 529712756e2c -> editing 812a118be9e4 525 + │ args: jj next --edit --color always 526 + ○ f71210c3a9ac eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 527 + │ next: c3e259d4c40f -> editing 529712756e2c 528 + │ args: jj next --edit --color always 529 + ○ ca30c30cdaac eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 530 + │ prev: 529712756e2c -> editing c3e259d4c40f 531 + │ args: jj prev --edit --color always 532 + ○ 36afe4c90738 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 533 + │ prev: 812a118be9e4 -> editing 529712756e2c 534 + │ args: jj prev --edit --color always 535 + ○ 04b8a11951b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 536 + │ prev: 584796aea9d8 -> editing 812a118be9e4 537 + │ args: jj prev --edit --color always 538 + ○ c9a0e9352945 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 539 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 540 + │ args: jj prev --edit --color always 541 + ○ 33e4cf9a8c5a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 542 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 543 + │ args: jj prev --edit --color always 544 + ○ 0ace05f77c15 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 545 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 546 + │ args: jj prev --edit --color always 547 + ○ 0dd120209c78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 548 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 549 + │ args: jj prev --edit --color always 550 + ○ 4ff2838fd673 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 551 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 552 + │ args: jj prev --edit --color always 553 + ○ c446d64f6e57 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 554 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 555 + │ args: jj prev --edit --color always 556 + ○ fe51570365d3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 557 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 558 + │ args: jj prev --edit --color always 559 + ○ ffdb38aeb725 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 560 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 561 + │ args: jj prev --edit --color always 562 + ○ 87e7808d6086 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 563 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 564 + │ args: jj prev --edit --color always 565 + ○ 8b723248c32f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 566 + │ prev: e817aa28318f -> editing d24fcbff9fa8 567 + │ args: jj prev --edit --color always 568 + ○ f4900f770668 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 569 + │ prev: bf3bd93157fe -> editing e817aa28318f 570 + │ args: jj prev --edit --color always 571 + ○ ca8a04a2670b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 572 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 573 + │ args: jj prev --edit --color always 574 + ○ c7cdbc94d17a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 575 + │ prev: 156f77d97c30 -> editing cf157ef807a2 576 + │ args: jj prev --edit --color always 577 + ○ 8708472e53b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 578 + │ prev: b774cec816ba -> editing 156f77d97c30 579 + │ args: jj prev --edit --color always 580 + ○ 230beee56654 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 581 + │ prev: a39ba96d6e4a -> editing b774cec816ba 582 + │ args: jj prev --edit --color always 583 + ○ 3916a82697dc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 584 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 585 + │ args: jj prev --edit --color always 586 + ○ 5b16958deed0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 587 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 588 + │ args: jj prev --edit --color always 589 + ○ 30b6e795010a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 590 + │ prev: 950186d3e70f -> editing cc8d0eb60492 591 + │ args: jj prev --edit --color always 592 + ○ 7783bd02df79 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 593 + │ prev: 2739bea98abf -> editing 950186d3e70f 594 + │ args: jj prev --edit --color always 595 + ○ 5019447bafc7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 596 + │ prev: e629aa0beb6f -> editing 2739bea98abf 597 + │ args: jj prev --edit --color always 598 + ○ ab7a5d65a236 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 599 + │ next: 2739bea98abf -> editing e629aa0beb6f 600 + │ args: jj next --edit --color always 601 + ○ 0203c0ab8c71 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 602 + │ next: 950186d3e70f -> editing 2739bea98abf 603 + │ args: jj next --edit --color always 604 + ○ 1791bd99ee86 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 605 + │ next: cc8d0eb60492 -> editing 950186d3e70f 606 + │ args: jj next --edit --color always 607 + ○ 4c660456add4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 608 + │ next: 48d266b0f74f -> editing cc8d0eb60492 609 + │ args: jj next --edit --color always 610 + ○ 2dae0304e4e6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 611 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 612 + │ args: jj next --edit --color always 613 + ○ 9cb76a44bf2c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 614 + │ next: b774cec816ba -> editing a39ba96d6e4a 615 + │ args: jj next --edit --color always 616 + ○ 9564a95365d6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 617 + │ next: 156f77d97c30 -> editing b774cec816ba 618 + │ args: jj next --edit --color always 619 + ○ aed3a70e08ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 620 + │ next: cf157ef807a2 -> editing 156f77d97c30 621 + │ args: jj next --edit --color always 622 + ○ 05f03e647c49 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 623 + │ next: bf3bd93157fe -> editing cf157ef807a2 624 + │ args: jj next --edit --color always 625 + ○ fb2b1c611179 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 626 + │ next: e817aa28318f -> editing bf3bd93157fe 627 + │ args: jj next --edit --color always 628 + ○ 898993d0d61c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 629 + │ next: d24fcbff9fa8 -> editing e817aa28318f 630 + │ args: jj next --edit --color always 631 + ○ 68977ec2a373 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 632 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 633 + │ args: jj next --edit --color always 634 + ○ f47a3c49f528 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 635 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 636 + │ args: jj next --edit --color always 637 + ○ 55fe64da60b9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 638 + │ next: 3eae36a2605b -> editing a32d34abf5b2 639 + │ args: jj next --edit --color always 640 + ○ 22b43d1c0a10 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 641 + │ next: d648d9dc91ca -> editing 3eae36a2605b 642 + │ args: jj next --edit --color always 643 + ○ 7f4d84bc88fc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 644 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 645 + │ args: jj next --edit --color always 646 + ○ 40c6fa4eb49c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 647 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 648 + │ args: jj next --edit --color always 649 + ○ 44b0fe87fa8a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 650 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 651 + │ args: jj next --edit --color always 652 + ○ acd75bfd909c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 653 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 654 + │ args: jj next --edit --color always 655 + ○ f1e37ba8caa4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 656 + │ next: 584796aea9d8 -> editing 8e967a8ded42 657 + │ args: jj next --edit --color always 658 + ○ 62442200497c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 659 + │ next: 812a118be9e4 -> editing 584796aea9d8 660 + │ args: jj next --edit --color always 661 + ○ 0ae375aea5ad eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 662 + │ next: 529712756e2c -> editing 812a118be9e4 663 + │ args: jj next --edit --color always 664 + ○ 41b60c427523 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 665 + │ next: c3e259d4c40f -> editing 529712756e2c 666 + │ args: jj next --edit --color always 667 + ○ f0e9c43dea62 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 668 + │ prev: 529712756e2c -> editing c3e259d4c40f 669 + │ args: jj prev --edit --color always 670 + ○ 7ee17f8aa9ab eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 671 + │ prev: 812a118be9e4 -> editing 529712756e2c 672 + │ args: jj prev --edit --color always 673 + ○ 1d28f629181c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 674 + │ prev: 584796aea9d8 -> editing 812a118be9e4 675 + │ args: jj prev --edit --color always 676 + ○ c3d50c44867f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 677 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 678 + │ args: jj prev --edit --color always 679 + ○ 7faf8be2d4f0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 680 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 681 + │ args: jj prev --edit --color always 682 + ○ 753c326c66da eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 683 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 684 + │ args: jj prev --edit --color always 685 + ○ 5a6e66a29a56 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 686 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 687 + │ args: jj prev --edit --color always 688 + ○ 43916dfb6ec8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 689 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 690 + │ args: jj prev --edit --color always 691 + ○ 829c8aa7e9f5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 692 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 693 + │ args: jj prev --edit --color always 694 + ○ 17daf9b8aa80 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 695 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 696 + │ args: jj prev --edit --color always 697 + ○ e177f2ace6e5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 698 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 699 + │ args: jj prev --edit --color always 700 + ○ 66cc060576bd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 701 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 702 + │ args: jj next --edit --color always 703 + ○ 0feedee2fcaf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 704 + │ next: 3eae36a2605b -> editing a32d34abf5b2 705 + │ args: jj next --edit --color always 706 + ○ 624e61c02e78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 707 + │ next: d648d9dc91ca -> editing 3eae36a2605b 708 + │ args: jj next --edit --color always 709 + ○ ba1de8899c87 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 710 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 711 + │ args: jj next --edit --color always 712 + ○ 9f10a8550e4f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 713 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 714 + │ args: jj next --edit --color always 715 + ○ 64b510079b24 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 716 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 717 + │ args: jj next --edit --color always 718 + ○ 25f9533d41a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 719 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 720 + │ args: jj next --edit --color always 721 + ○ 3db7940af9ab eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 722 + │ next: 584796aea9d8 -> editing 8e967a8ded42 723 + │ args: jj next --edit --color always 724 + ○ 2563dcbb9d63 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 725 + │ next: 812a118be9e4 -> editing 584796aea9d8 726 + │ args: jj next --edit --color always 727 + ○ c05559d8b93e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 728 + │ next: 529712756e2c -> editing 812a118be9e4 729 + │ args: jj next --edit --color always 730 + ○ 723744e1a91f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 731 + │ next: c3e259d4c40f -> editing 529712756e2c 732 + │ args: jj next --edit --color always 733 + ○ c8092d5af20d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 734 + │ prev: 529712756e2c -> editing c3e259d4c40f 735 + │ args: jj prev --edit --color always 736 + ○ a05ecdb3e0eb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 737 + │ prev: 812a118be9e4 -> editing 529712756e2c 738 + │ args: jj prev --edit --color always 739 + ○ 81b2a0acf74d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 740 + │ prev: 584796aea9d8 -> editing 812a118be9e4 741 + │ args: jj prev --edit --color always 742 + ○ 4dbb928a3f3d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 743 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 744 + │ args: jj prev --edit --color always 745 + ○ 7696f68b745b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 746 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 747 + │ args: jj prev --edit --color always 748 + ○ f0f976791366 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 749 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 750 + │ args: jj prev --edit --color always 751 + ○ a0f1a6265e62 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 752 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 753 + │ args: jj prev --edit --color always 754 + ○ 663a2010711f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 755 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 756 + │ args: jj prev --edit --color always 757 + ○ e1cb99ed5cb1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 758 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 759 + │ args: jj prev --edit --color always 760 + ○ 6f0e51018998 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 761 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 762 + │ args: jj prev --edit --color always 763 + ○ f964c18f4250 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 764 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 765 + │ args: jj prev --edit --color always 766 + ○ abc6c2d67d6c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 767 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 768 + │ args: jj prev --edit --color always 769 + ○ 955e6799d49a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 770 + │ prev: e817aa28318f -> editing d24fcbff9fa8 771 + │ args: jj prev --edit --color always 772 + ○ 46e4a167b6e9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 773 + │ prev: bf3bd93157fe -> editing e817aa28318f 774 + │ args: jj prev --edit --color always 775 + ○ de91ff44ef59 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 776 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 777 + │ args: jj prev --edit --color always 778 + ○ 440e4652352c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 779 + │ prev: 156f77d97c30 -> editing cf157ef807a2 780 + │ args: jj prev --edit --color always 781 + ○ 4bae8a17b53b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 782 + │ prev: b774cec816ba -> editing 156f77d97c30 783 + │ args: jj prev --edit --color always 784 + ○ a4d557f8ad7b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 785 + │ prev: a39ba96d6e4a -> editing b774cec816ba 786 + │ args: jj prev --edit --color always 787 + ○ c23d208589d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 788 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 789 + │ args: jj prev --edit --color always 790 + ○ e95297289186 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 791 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 792 + │ args: jj prev --edit --color always 793 + ○ 2cbdbc53d7b1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 794 + │ prev: 950186d3e70f -> editing cc8d0eb60492 795 + │ args: jj prev --edit --color always 796 + ○ a4573bf98c3f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 797 + │ prev: 2739bea98abf -> editing 950186d3e70f 798 + │ args: jj prev --edit --color always 799 + ○ 0e9f7a179972 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 800 + │ prev: e629aa0beb6f -> editing 2739bea98abf 801 + │ args: jj prev --edit --color always 802 + ○ 37a66ae3ebc9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 803 + │ next: 2739bea98abf -> editing e629aa0beb6f 804 + │ args: jj next --edit --color always 805 + ○ 222cdba01168 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 806 + │ next: 950186d3e70f -> editing 2739bea98abf 807 + │ args: jj next --edit --color always 808 + ○ 2372f98031dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 809 + │ next: cc8d0eb60492 -> editing 950186d3e70f 810 + │ args: jj next --edit --color always 811 + ○ e1f40502f278 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 812 + │ next: 48d266b0f74f -> editing cc8d0eb60492 813 + │ args: jj next --edit --color always 814 + ○ 1fc3c88ab08f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 815 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 816 + │ args: jj next --edit --color always 817 + ○ d8586c9fa878 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 818 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 819 + │ args: jj prev --edit --color always 820 + ○ 18269bea45c4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 821 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 822 + │ args: jj prev --edit --color always 823 + ○ 28620f402dbb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 824 + │ next: 48d266b0f74f -> editing cc8d0eb60492 825 + │ args: jj next --edit --color always 826 + ○ 65129eeb16ef eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 827 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 828 + │ args: jj prev --edit --color always 829 + ○ c7e532a0762d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 830 + │ next: 48d266b0f74f -> editing cc8d0eb60492 831 + │ args: jj next --edit --color always 832 + ○ f815d912f7e4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 833 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 834 + │ args: jj prev --edit --color always 835 + ○ 9a840cbaa8fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 836 + │ next: 48d266b0f74f -> editing cc8d0eb60492 837 + │ args: jj next --edit --color always 838 + ○ 686661f7ccd9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 839 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 840 + │ args: jj next --edit --color always 841 + ○ 8c5b7e4c1225 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 842 + │ next: b774cec816ba -> editing a39ba96d6e4a 843 + │ args: jj next --edit --color always 844 + ○ 3b513b12ee24 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 845 + │ next: 156f77d97c30 -> editing b774cec816ba 846 + │ args: jj next --edit --color always 847 + ○ 2b08f91111f7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 848 + │ prev: b774cec816ba -> editing 156f77d97c30 849 + │ args: jj prev --edit --color always 850 + ○ a109e43e0d0a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 851 + │ prev: a39ba96d6e4a -> editing b774cec816ba 852 + │ args: jj prev --edit --color always 853 + ○ 77fa8eb253ec eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 854 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 855 + │ args: jj prev --edit --color always 856 + ○ f6b2875d7148 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 857 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 858 + │ args: jj prev --edit --color always 859 + ○ 87199d2611a2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 860 + │ prev: 950186d3e70f -> editing cc8d0eb60492 861 + │ args: jj prev --edit --color always 862 + ○ 061aebfb8410 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 863 + │ prev: 2739bea98abf -> editing 950186d3e70f 864 + │ args: jj prev --edit --color always 865 + ○ f89e07306ef3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 866 + │ prev: e629aa0beb6f -> editing 2739bea98abf 867 + │ args: jj prev --edit --color always 868 + ○ c099446d186c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 869 + │ next: 2739bea98abf -> editing e629aa0beb6f 870 + │ args: jj next --edit --color always 871 + ○ e8ea71c5b2a9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 872 + │ prev: e629aa0beb6f -> editing 2739bea98abf 873 + │ args: jj prev --edit --color always 874 + ○ d4c1200ba27d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 875 + │ next: 2739bea98abf -> editing e629aa0beb6f 876 + │ args: jj next --edit --color always 877 + ○ a197a899f0fe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 878 + │ next: 950186d3e70f -> editing 2739bea98abf 879 + │ args: jj next --edit --color always 880 + ○ cc4ee0244c0e eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 881 + │ next: cc8d0eb60492 -> editing 950186d3e70f 882 + │ args: jj next --edit --color always 883 + ○ b4440477e838 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 884 + │ prev: 950186d3e70f -> editing cc8d0eb60492 885 + │ args: jj prev --edit --color always 886 + ○ fe1d4533a8b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 887 + │ prev: 2739bea98abf -> editing 950186d3e70f 888 + │ args: jj prev --edit --ignore-working-copy 889 + ○ 28dfbd17f098 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 890 + │ prev: e629aa0beb6f -> editing 2739bea98abf 891 + │ args: jj prev --edit --ignore-working-copy 892 + ○ 75fc418ceb44 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 893 + │ rename branch hi to branch bye 894 + │ args: jj branch rename hi bye --color always 895 + ○ 219d7975fe9b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 896 + │ create branch hi pointing to commit e629aa0beb6fc1f4b6aba3944776b17d6c7f0945 897 + │ args: jj branch create hi --color always 898 + ○ 7286142a6136 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 899 + │ prev: a78888a34918 -> editing e629aa0beb6f 900 + │ args: jj prev --edit --color always 901 + ○ 6bb7618574ff eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 902 + │ squash commits into edd7d0839b388ee8175f1bfe87923de06162f3e0 903 + │ args: jj squash --quiet -m 'taroisetoariest 904 + 905 + │ oarisetnaorienst 906 + 907 + │ ' --color always 908 + ○ 6cdad9359f5b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 909 + │ prev: 9e664ead9fc9 -> editing 2d3e7612a1b9 910 + │ args: jj prev --edit --color always 911 + ○ 36cb49188518 eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 912 + │ commit 4f545f50a901b12c339db1a9e6efa1318a4415f7 913 + │ args: jj commit -m oarisetnaorienst --color always 914 + ○ d8a5b5a22be6 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 915 + │ commit 819c8ef8b6e075b1b670ad59bfa58bd0910eead7 916 + │ args: jj commit -m taroisetoariest --color always 917 + ○ f552d15d3bc4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 918 + │ commit a6153441568f9aa4c42d37f0c538933e93ceee47 919 + │ args: jj commit -m hi --color always 920 + ○ d486a5e71797 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 921 + │ commit 05343f4fbe95ef1f3c912c3a7bb60e5221f09d5a 922 + │ args: jj commit -m hi --color always 923 + ○ 56233d6a5071 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 924 + │ prev: 1eeecc488c6a -> editing 05343f4fbe95 925 + │ args: jj prev --edit --color always 926 + ○ 99f901cadf87 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 927 + │ squash commits into a638c52f299c89c6d565e034fdf2d21c0275f8e1 928 + │ args: jj squash --quiet -m 'hi 929 + 930 + 931 + 932 + │ hi 933 + 934 + │ ' --color always 935 + ○ 835be5b68838 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 936 + │ prev: 6c7f1ef59cb1 -> editing e4fb6d7146c2 937 + │ args: jj prev --edit --color always 938 + ○ b669936a2f9b eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 939 + │ commit 17bb4b2e967bd817def69f549154ddd0aa9283b2 940 + │ args: jj commit -m hi --color always 941 + ○ 6ddb76e610f3 eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 942 + │ commit 891985da418d88df9793501a85bd0268af570d81 943 + │ args: jj commit -m hi --color always 944 + ○ 43edbacca45f eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 945 + │ commit f1a77dc0c1daab8fbb79e0db6c99398bcc7be2c5 946 + │ args: jj commit -m hi --color always 947 + ○ df1d8579bf54 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 948 + │ prev: 09defe55dea1 -> editing f1a77dc0c1da 949 + │ args: jj prev --edit --color always 950 + ○ 3d233095f4d9 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 951 + │ squash commits into 0a9e2acd6785c0d7e3c8d3a8dcfcbefe0725ef64 952 + │ args: jj squash --quiet -m 'hi 953 + 954 + 955 + 956 + │ theer 957 + 958 + │ made 959 + 960 + 961 + │ ' --color always 962 + ○ 5fdb53437364 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 963 + │ prev: 4d6c191bf4cf -> editing 2f7b7c3e3fab 964 + │ args: jj prev --edit --color always 965 + ○ f1e41c5cfa3e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 966 + │ squash commits into 327f68db14d6cb931c837b3114ae20701eacfefc 967 + │ args: jj squash --quiet -m 'theer 968 + 969 + │ made 970 + 971 + │ ' --color always 972 + ○ 57cf0ac648d3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 973 + │ prev: b9d50011a6d3 -> editing a73a3ef803a2 974 + │ args: jj prev --edit --color always 975 + ○ 0435af533e54 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 976 + │ commit 3d8028fbe7d23c31ea960b09e0cedd7bfc4dcdad 977 + │ args: jj commit -m made --color always 978 + ○ 3a9648c27abf eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 979 + │ commit e7b7bf1c9d567e65167b3ac35f392cc11687b406 980 + │ args: jj commit -m theer --color always 981 + ○ 96201e98fd81 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 982 + │ commit 1fe464ed62d843e7ba91771832efc7151110e5f5 983 + │ args: jj commit -m hi --color always 984 + ○ 233c213fd250 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 985 + │ prev: 09c1c1b77902 -> editing 1fe464ed62d8 986 + │ args: jj prev --edit --color always 987 + ○ 0733c52b95c1 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 988 + │ squash commits into 0a2fe8cd9efe5d82c14abec98c7d3196efad7890 989 + │ args: jj squash --quiet -m 'there 990 + 991 + 992 + │ mate 993 + 994 + │ ' --color always 995 + ○ 3959931336a8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 996 + │ prev: c3f8e3692fbb -> editing 993e23d8d37a 997 + │ args: jj prev --edit --color always 998 + ○ 530bda78a91d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 999 + │ commit 9265fd9185fae9942961e93d240cdaa9b758d6f7 1000 + │ args: jj commit -m mate --color always 1001 + ○ 51de25fe3b29 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1002 + │ commit cca11a5ea849e3c9f52c24065abe36a1ecb5f09f 1003 + │ args: jj commit -m there --color always 1004 + ○ d49c25325d32 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 1005 + │ commit a8e890af7716212bf34a42f0da6735c9fcfeccc4 1006 + │ args: jj commit -m hi --color always 1007 + ○ 542217fd9678 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1008 + │ prev: 26bc476cecf5 -> editing a8e890af7716 1009 + │ args: jj prev --edit --color always 1010 + ○ 1ae1c544e128 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1011 + │ squash commits into e74ff9b54a9dbfedfb110906614f994454ea7880 1012 + │ args: jj squash --quiet -m 'heyyyy 1013 + 1014 + 1015 + │ hiii 1016 + 1017 + │ ' --color always 1018 + ○ bd95023049f0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1019 + │ snapshot working copy 1020 + │ args: jj show --color always 1021 + ○ 974d7b339326 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1022 + │ snapshot working copy 1023 + │ args: jj log --no-graph -T '"::"++current_working_copy++"::\n"++description++"\n::end::\n"' 1024 + ○ 5c32f1107dbc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1025 + │ next: e74ff9b54a9d -> editing d83af389d9ef 1026 + │ args: jj next --edit --color always 1027 + ○ 1359bbff928a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1028 + │ next: a39ba96d6e4a -> editing e74ff9b54a9d 1029 + │ args: jj next --edit --color always 1030 + ○ 8ba828b8ea12 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1031 + │ prev: e74ff9b54a9d -> editing a39ba96d6e4a 1032 + │ args: jj prev --edit --color always 1033 + ○ 9640ee5972f9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1034 + │ describe commit fce0cb59e1f4310daa2dd52fd68754f22d2f7f35 1035 + │ args: jj describe -m heyyyy --color always 1036 + ○ 0c36998be726 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1037 + │ prev: 95b2bf3f1135 -> editing fce0cb59e1f4 1038 + │ args: jj prev --edit --color always 1039 + ○ 72b85377f065 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1040 + │ describe commit 5578d593d4ac962736605ee8207665366a88ff76 1041 + │ args: jj describe -m hiii --color always 1042 + ○ 99ec0f674b2e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1043 + │ new empty commit 1044 + │ args: jj new --color always 1045 + ○ 3d6f0119134d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1046 + │ commit 140f6af911abae8f52fa038fbc9518bb4822fb5a 1047 + │ args: jj commit -m hiiiii --color always 1048 + ○ 79ff34f9df9c eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1049 + │ new empty commit 1050 + │ args: jj new --color always 1051 + ○ 794cc557ab24 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1052 + │ prev: 18a13c73abcb -> editing b774cec816ba 1053 + │ args: jj prev --edit --color always 1054 + ○ 3d386c7ebc53 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1055 + │ squash commits into d2fbf2ba883fef628309be4ce4d0d194af797c69 1056 + │ args: jj squash --quiet -m ' hi 1057 + │ hi' --color always 1058 + ○ c4c818190f84 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1059 + │ next: d2fbf2ba883f -> editing 1f962613fdff 1060 + │ args: jj next --edit --color always 1061 + ○ d9a516d97517 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1062 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 1063 + │ args: jj next --edit --color always 1064 + ○ d3193ea846ca eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1065 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 1066 + │ args: jj prev --edit --color always 1067 + ○ 9795b66a350d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1068 + │ prev: 1f962613fdff -> editing d2fbf2ba883f 1069 + │ args: jj prev --edit --color always 1070 + ○ 8eb189214c1f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1071 + │ prev: de3d206586eb -> editing 1f962613fdff 1072 + │ args: jj prev --edit --color always 1073 + ○ 3d0ebb24fde9 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 1074 + │ commit 4fc1da577d622650339905379b24c10182f8213f 1075 + │ args: jj commit -m hi --color always 1076 + ○ 906dedf9bf65 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1077 + │ new empty commit 1078 + │ args: jj new --color always 1079 + ○ 79a2293e6ebe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1080 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 1081 + │ args: jj next --edit --color always 1082 + ○ 7ff7dd3ac474 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1083 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 1084 + │ args: jj prev --edit --color always 1085 + ○ 2082701b30f9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1086 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 1087 + │ args: jj next --edit --color always 1088 + ○ 1b46eec9cf13 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1089 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 1090 + │ args: jj prev --edit --color always 1091 + ○ 331dd68121cb eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1092 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 1093 + │ args: jj next --edit --color always 1094 + ○ 6149ef8de1a3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1095 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 1096 + │ args: jj prev --edit --color always 1097 + ○ d0280d2971ba eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1098 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 1099 + │ args: jj next --edit --color always 1100 + ○ 55e9e5b666c4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1101 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 1102 + │ args: jj prev --edit --color always 1103 + ○ eb69650930c2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1104 + │ describe commit f7f6a239f683133aea01c9348214a4387f2f4233 1105 + │ args: jj describe -m hi --color always 1106 + ○ 57ff3a6b65c9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1107 + │ new empty commit 1108 + │ args: jj new --color always 1109 + ○ 92e5a759b532 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1110 + │ prev: db28a3c94548 -> editing 156f77d97c30 1111 + │ args: jj prev --edit --color always 1112 + ○ 52f9d46ebed0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1113 + │ squash commits into ce6791c1369d899c890905b4afba26e93f99b059 1114 + │ args: jj squash --quiet -m '◉ top 1115 + │ @ bottom' --color always 1116 + ○ 1d1d1f007a70 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1117 + │ describe commit 205d2260c671e0d59fea1bd704db38ef37f35feb 1118 + │ args: jj describe -m bottom --color always 1119 + ○ 466a213fcfca eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1120 + │ new empty commit 1121 + │ args: jj new --color always 1122 + ○ 1d987e97b96e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1123 + │ describe commit 45e24d7495a87dcfe31b87feee6a5ff306cd34da 1124 + │ args: jj describe -m top --color always 1125 + ○ 61db9da90743 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1126 + │ new empty commit 1127 + │ args: jj new --color always 1128 + ○ 0f3e71bb30d6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1129 + │ prev: 27c5ac2f280e -> editing cf157ef807a2 1130 + │ args: jj prev --edit --color always 1131 + ○ 7dcc590a6c5a eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1132 + │ squash commits into f0a8ee6faf9531723ac069aba25c698e843f2bc5 1133 + │ args: jj squash --quiet -m '\'◉ top 1134 + │ @ \' bottom 1135 + │ │ top\'\'' --color always 1136 + ○ de8f4fcc492c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1137 + │ next: f0a8ee6faf95 -> editing 32a7bd1d1da4 1138 + │ args: jj next --edit --color always 1139 + ○ 272e024b34f1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1140 + │ prev: 32a7bd1d1da4 -> editing f0a8ee6faf95 1141 + │ args: jj prev --edit --color always 1142 + ○ 3c40022e3ab2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1143 + │ next: f0a8ee6faf95 -> editing 32a7bd1d1da4 1144 + │ args: jj next --edit --color always 1145 + ○ 384780c22afa eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1146 + │ prev: 32a7bd1d1da4 -> editing f0a8ee6faf95 1147 + │ args: jj prev --edit --color always 1148 + ○ f7ef54954104 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1149 + │ prev: 83e52c5bad57 -> editing 32a7bd1d1da4 1150 + │ args: jj prev --edit --color always 1151 + ○ 1276407ad8fb eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1152 + │ squash commits into 50a646e48dc375fb39f24d5056b05699bd756a19 1153 + │ args: jj squash --quiet -m '\' bottom 1154 + │ top\'' --color always 1155 + ○ 1f026b64b28d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1156 + │ next: 50a646e48dc3 -> editing 647056aa842a 1157 + │ args: jj next --edit --color always 1158 + ○ 300b004a7d08 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1159 + │ prev: 1ccda61c8afb -> editing 50a646e48dc3 1160 + │ args: jj prev --edit --color always 1161 + ○ 3307862123fa eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1162 + │ commit c567ed81c071bc84de591c42843125f5c40058a0 1163 + │ args: jj commit -m bottom --color always 1164 + ○ 05533a1e03e3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1165 + │ prev: b8ff36a2e567 -> editing c567ed81c071 1166 + │ args: jj prev --edit --color always 1167 + ○ 7e8e95d1639e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1168 + │ describe commit 1314b89c9c73d1b58444203a7b37803dfa5618e9 1169 + │ args: jj describe -m top --color always 1170 + ○ b361daa69f91 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1171 + │ describe commit 6d84b0df6f455c79dca8ad8fa14014dfd98e018f 1172 + │ args: jj describe -m bottom --color always 1173 + ○ 09b2fc440548 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1174 + │ new empty commit 1175 + │ args: jj new --color always 1176 + ○ a38479196b0e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1177 + │ commit 00c3ea8fee69a8d37022a3b82204ce99f5bfb014 1178 + │ args: jj commit -m top --color always 1179 + ○ ae4096910b24 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1180 + │ squash commits into f8625ee3fa8c7d82cb14f40e49fb7b498c123606 1181 + │ args: jj squash --quiet -m '\' \' hi 1182 + │ hi\' 1183 + │ hi\'' --color always 1184 + ○ 97cd694b3d62 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 1185 + │ describe commit 7338aec8c0a4b9718f1f096970017c7ccfe480d6 1186 + │ args: jj describe -m hi --color always 1187 + ○ e82d5c639ccb eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1188 + │ new empty commit 1189 + │ args: jj new --color always 1190 + ○ a517a8e91755 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1191 + │ prev: f4f6a1633518 -> editing f8625ee3fa8c 1192 + │ args: jj prev --edit --color always 1193 + ○ 6c279d45d045 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1194 + │ squash commits into d0ce96126dee3281b467802904bde912d45a3527 1195 + │ args: jj squash --quiet -m '\' hi 1196 + │ hi\'' --color always 1197 + ○ c1d51e2755e0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1198 + │ next: d0ce96126dee -> editing e82e5b5491cd 1199 + │ args: jj next --edit --color always 1200 + ○ fd94b05e3ca2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1201 + │ next: e817aa28318f -> editing d0ce96126dee 1202 + │ args: jj next --edit --color always 1203 + ○ 9124112d1dbd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1204 + │ prev: d0ce96126dee -> editing e817aa28318f 1205 + │ args: jj prev --edit --color always 1206 + ○ 7252bfb45762 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1207 + │ describe commit ae954d026f84db8bfa794e6232b40e692c59e229 1208 + │ args: jj describe -m hi --color always 1209 + ○ 94aea33cbd7b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1210 + │ prev: e355f252ac5a -> editing ae954d026f84 1211 + │ args: jj prev --edit --color always 1212 + ○ f260ae605079 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 1213 + │ describe commit c1ace5daa8404742bbd66789a29f34633825acf8 1214 + │ args: jj describe -m hi --color always 1215 + ○ 35b7b6600bf7 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1216 + │ new empty commit 1217 + │ args: jj new --color always 1218 + ○ 68933af246a6 eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 1219 + │ squash commits into 18ab77d50aaef2c55f808a339c8ac8c2d6ea2ddb 1220 + │ args: jj squash --quiet -m ' hi there mat 1221 + │ yyyyyyyy 1222 + │ this is a commit 1223 + │ commit 1224 + │ top commit 1225 + │ topper commit' --color always 1226 + ○ 9cc80e5f627e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1227 + │ prev: d2a4e6243427 -> editing bb65a7894857 1228 + │ args: jj prev --edit --color always 1229 + ○ 5a4863efebca eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1230 + │ squash commits into 3eaf5931de732431dccef0cbdad6c56fbef5c24e 1231 + │ args: jj squash --quiet -m ' top commit 1232 + │ topper commit' --color always 1233 + ○ 026432566bef eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1234 + │ describe commit 0eb5a19656c0e4cced7ec50c196477c24fb176e7 1235 + │ args: jj describe -m 'topper commit' --color always 1236 + ○ 579f436ac715 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1237 + │ new empty commit 1238 + │ args: jj new --color always 1239 + ○ e55221df45cc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1240 + │ describe commit d5baf524331cacd7ea920ca3bdc013e38d7686cf 1241 + │ args: jj describe -m 'top commit' --color always 1242 + ○ 0dd772cbc20f eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1243 + │ new empty commit 1244 + │ args: jj new --color always 1245 + ○ b25c1cc7a8a6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1246 + │ prev: 8e1093c7e457 -> editing 18ab77d50aae 1247 + │ args: jj prev --edit --color always 1248 + ○ 6d81914894b1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1249 + │ squash commits into fe87bc4a05fd40f0055a43562c5bc516f879c0ed 1250 + │ args: jj squash --quiet -m ' hi there mat 1251 + │ yyyyyyyy 1252 + │ this is a commit 1253 + │ commit' --color always 1254 + ○ 31a34cca8ec6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1255 + │ next: fe87bc4a05fd -> editing 1193ed1893f1 1256 + │ args: jj next --edit --color always 1257 + ○ 2578d0def711 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1258 + │ prev: 1193ed1893f1 -> editing fe87bc4a05fd 1259 + │ args: jj prev --edit --color always 1260 + ○ c7b612d848be eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1261 + │ prev: 42f0dcc74dc0 -> editing 1193ed1893f1 1262 + │ args: jj prev --edit --color always 1263 + ○ 586da1bae0a6 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1264 + │ squash commits into f25dfcedf981a094b07f0139ed65529835c48c6a 1265 + │ args: jj squash --quiet -m ' this is a commit 1266 + │ commit' --color always 1267 + ○ 63df71358f8a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1268 + │ describe commit 4d19c2bdae62d269980aeb4dc084c613fee826a6 1269 + │ args: jj describe -m commit --color always 1270 + ○ c2d08949d823 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1271 + │ commit ff87f3f2a5122b8d82a4647510b8ab73d5f83f95 1272 + │ args: jj commit -m 'this is a commit' --color always 1273 + ○ 4a0c3db017a6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1274 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 1275 + │ args: jj next --edit --color always 1276 + ○ 78cb97b6ce83 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1277 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 1278 + │ args: jj prev --edit --color always 1279 + ○ a89761ade04f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1280 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 1281 + │ args: jj next --edit --color always 1282 + ○ f324a488d108 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1283 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 1284 + │ args: jj prev --edit --color always 1285 + ○ e0b783238c27 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1286 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 1287 + │ args: jj next --edit --color always 1288 + ○ 91235f435de5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1289 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 1290 + │ args: jj prev --edit --color always 1291 + ○ 940c3ac42718 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1292 + │ describe commit 5c0afa99dcd1e5507ceddc59eb3716f59a5191ad 1293 + │ args: jj describe -m 'hely there' --color always 1294 + ○ 2302b65d18bf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1295 + │ new empty commit 1296 + │ args: jj new --color always 1297 + ○ bff2ab254bfa eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1298 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 1299 + │ args: jj next --edit --color always 1300 + ○ 901efcc54ae8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1301 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 1302 + │ args: jj prev --edit --color always 1303 + ○ 6d70d536ab10 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1304 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 1305 + │ args: jj next --edit --color always 1306 + ○ 656a0126e7e4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1307 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 1308 + │ args: jj prev --edit --color always 1309 + ○ a144c62c7837 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1310 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 1311 + │ args: jj next --edit --color always 1312 + ○ 6bb9f183444c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1313 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 1314 + │ args: jj prev --edit --color always 1315 + ○ 70b5ca56ada0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1316 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 1317 + │ args: jj next --edit --color always 1318 + ○ 835f6c9b8a72 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1319 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 1320 + │ args: jj prev --edit --color always 1321 + ○ ed1ac1807351 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1322 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 1323 + │ args: jj next --edit --color always 1324 + ○ fdd896eb9553 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1325 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 1326 + │ args: jj prev --edit --color always 1327 + ○ 789df408207c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1328 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 1329 + │ args: jj next --edit --color always 1330 + ○ f2b429de9cb2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1331 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 1332 + │ args: jj next --edit --color always 1333 + ○ cc816f4ae364 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1334 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 1335 + │ args: jj next --edit --color always 1336 + ○ 156f7cf54933 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1337 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 1338 + │ args: jj prev --edit --color always 1339 + ○ 94a5b651ff11 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1340 + │ prev: c3b589acfe23 -> editing 8d106e583dc6 1341 + │ args: jj prev --edit --color always 1342 + ○ 7a23e316c947 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1343 + │ new empty commit 1344 + │ args: jj new --color always 1345 + ○ a5a8b83e5314 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1346 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 1347 + │ args: jj prev --color always 1348 + ○ 0b1c2e04d971 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1349 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 1350 + │ args: jj prev --edit --color always 1351 + ○ 055acb5faa3e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1352 + │ prev: 225de22ef62d -> editing fe87bc4a05fd 1353 + │ args: jj prev --edit --color always 1354 + ○ c94e1a034136 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1355 + │ squash commits into 99f39383d166ff653f06801222dee4a8dae92c50 1356 + │ args: jj squash --quiet -m ' hi there mat 1357 + │ yyyyyyyy 1358 + │ ' --color always 1359 + ○ 421981001df6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1360 + │ describe commit 47a7471e53d1e823aa10cc93a0bd391d56ae1600 1361 + │ args: jj describe -m h --color always 1362 + ○ 29689d961d03 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1363 + │ new empty commit 1364 + │ args: jj new --color always 1365 + ○ b0c2b74a6043 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1366 + │ prev: 06f5d53d2e8f -> editing 99f39383d166 1367 + │ args: jj prev --edit --color always 1368 + ○ 612a4ab1b057 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1369 + │ squash commits into 1457bf903cc993893cf68de3ee76c163a164d1dd 1370 + │ args: jj squash --quiet -m 'hi there mate 1371 + │ yyyyyyyy2 1372 + │ ' --color always 1373 + ○ 8e734856b428 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1374 + │ describe commit bcfecf26c567ee77cbb8f70503075330b0eec1e7 1375 + │ args: jj describe -m h --color always 1376 + ○ c316a1f806c3 eli@eli-nixos-xps 3 months ago, lasted 8 milliseconds 1377 + │ new empty commit 1378 + │ args: jj new --color always 1379 + ○ 0ac2c3561664 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1380 + │ prev: 4bfe97e78880 -> editing 1457bf903cc9 1381 + │ args: jj prev --edit --color always 1382 + ○ 30b466f48c0b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1383 + │ squash commits into be99ca72c432c245b909449d9607eaef5c81bc62 1384 + │ args: jj squash --quiet -m 'hi there mate 1385 + │ yyyyyyyy2' --color always 1386 + ○ 9f85bb043617 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1387 + │ prev: 157be426bb53 -> editing 44f387767d12 1388 + │ args: jj prev --edit --color always 1389 + ○ 3775dd33bd2a eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1390 + │ commit 022f99b6d9b8408d60748cf5d12bf22b1af2ea52 1391 + │ args: jj commit -m heyyyyyyyy2 --color always 1392 + ○ 277723acd733 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1393 + │ commit 90032a7b8d4095d26421ba2ca6abc41697ceffe0 1394 + │ args: jj commit -m 'hi there mate' --color always 1395 + ○ 478a422322b4 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1396 + │ squash commits into a1d466a6844248a3b22cfc818dfc135b81800721 1397 + │ args: jj squash --quiet -m ' hi2 1398 + │ hi3' --color always 1399 + ○ 280c74b24d68 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1400 + │ prev: a438131bc1ba -> editing da8a3d50b051 1401 + │ args: jj prev --edit --color always 1402 + ○ 3df55b0b9c9d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1403 + │ commit 6dd0c512f09ff77281a2085d4a90d56f0bbc3216 1404 + │ args: jj commit -m hi3 --color always 1405 + ○ 2b23e4116a3b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1406 + │ commit 192954578eb7130b6a2abc9a152c06d590c7103b 1407 + │ args: jj commit -m hi2 --color always 1408 + ○ 9641ff68e0b8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1409 + │ commit fd87c5dbd403ac3f555600df53bebfad3e95c412 1410 + │ args: jj commit -m hi --color always 1411 + ○ c8820346fc54 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1412 + │ squash commits into 0a409b39ba02064525c85594ce3414ed9533b941 1413 + │ args: jj squash --quiet -m ' this is a thi 1414 + │ this is anoth 1415 + │ now anothe 1416 + │ no 1417 + │ this is ne' --color always 1418 + ○ 839c4efa675e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1419 + │ prev: c6b827eeb6d9 -> editing 31e094baca12 1420 + │ args: jj prev --edit --color always 1421 + ○ 00e94b5ef2f1 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1422 + │ squash commits into a30ae8a25dbb9ccb10d98b0fcfd49840d3c58e98 1423 + │ args: jj squash --quiet -m ' no 1424 + │ this is ne' --color always 1425 + ○ f9aaf009216c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1426 + │ prev: cae90814da8b -> editing 52881c5ed406 1427 + │ args: jj prev --edit --color always 1428 + ○ df70ee7fb571 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1429 + │ commit 687d0f50a6e2e88fd380479e4fa42a781f55e631 1430 + │ args: jj commit -m 'this is new' --color always 1431 + ○ 7f7520f3c64f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1432 + │ commit 728111e81196e6b91fc3ac657deba15f9304cb91 1433 + │ args: jj commit -m now --color always 1434 + ○ 92167d93630b eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1435 + │ new empty commit 1436 + │ args: jj new --color always 1437 + ○ 2442dcd504f4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1438 + │ next: 3eae36a2605b -> editing 0a409b39ba02 1439 + │ args: jj next --edit --color always 1440 + ○ 80af4ec24bda eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1441 + │ next: d648d9dc91ca -> editing 3eae36a2605b 1442 + │ args: jj next --edit --color always 1443 + ○ 90358830f841 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1444 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 1445 + │ args: jj prev --edit --color always 1446 + ○ 83867c22075a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1447 + │ prev: 0a409b39ba02 -> editing 3eae36a2605b 1448 + │ args: jj prev --edit --color always 1449 + ○ f63a16e3709c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1450 + │ next: 3eae36a2605b -> editing 0a409b39ba02 1451 + │ args: jj next --edit --color always 1452 + ○ 7e97385ab087 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1453 + │ prev: 0a409b39ba02 -> editing 3eae36a2605b 1454 + │ args: jj prev --edit --color always 1455 + ○ 624c4b1877c8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1456 + │ prev: 24ce6f90f0b7 -> editing 0a409b39ba02 1457 + │ args: jj prev --edit --color always 1458 + ○ 95897ffa0d66 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1459 + │ squash commits into 74584829d54c50c43cd7cb61ab34f43d5bbfad48 1460 + │ args: jj squash --quiet -m ' this is a thi 1461 + │ this is anoth 1462 + │ now anothe' --color always 1463 + ○ 39da8f5514c6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1464 + │ describe commit d6e0881ed10552841ef050483e662385da7cd98c 1465 + │ args: jj describe -m 'now another' --color always 1466 + ○ b703a5c6aa73 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1467 + │ new empty commit 1468 + │ args: jj new --color always 1469 + ○ c0958f2efd9d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1470 + │ prev: 20e100f23ad8 -> editing 74584829d54c 1471 + │ args: jj prev --edit --color always 1472 + ○ 518d52001d89 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1473 + │ squash commits into 7ba9245258b17c06ef1f52d56428e86d52feed93 1474 + │ args: jj squash --quiet -m ' this is a thin 1475 + │ this is anothe' --color always 1476 + ○ cfdcfe764978 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1477 + │ describe commit 400c8a9362371dee59677733f87937da54abaa54 1478 + │ args: jj describe -m 'this is another' --color always 1479 + ○ 9fbf7f954ee9 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1480 + │ new empty commit 1481 + │ args: jj new --color always 1482 + ○ 46770e4be71d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1483 + │ describe commit d3fcbecf2f1e7552a881605dd949249f88582f0b 1484 + │ args: jj describe -m 'this is a thing' --color always 1485 + ○ 1087912733f5 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 1486 + │ new empty commit 1487 + │ args: jj new --color always 1488 + ○ ab36c9539ac3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1489 + │ prev: ba9c580d4485 -> editing 3eae36a2605b 1490 + │ args: jj prev --edit --color always 1491 + ○ 5e2f02c3acff eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 1492 + │ squash commits into e3db7fd1a46b40ecb3e55f3bc53a42ef7405bf38 1493 + │ args: jj squash --quiet -m ' h 1494 + │ this is my message 1495 + │ hello this is my special 1496 + │ hi \n this is \n a multi l 1497 + 1498 + │ th 1499 + │ │ 1500 + │ m' --color always 1501 + ○ aaba6e4045e5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1502 + │ next: e3db7fd1a46b -> editing f8c79ce3d777 1503 + │ args: jj next --edit --color always 1504 + ○ d6a941f7be1e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1505 + │ next: d648d9dc91ca -> editing e3db7fd1a46b 1506 + │ args: jj next --edit --color always 1507 + ○ 10dd0c19a400 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1508 + │ prev: e3db7fd1a46b -> editing d648d9dc91ca 1509 + │ args: jj prev --edit --color always 1510 + ○ 085d072dbd7e eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1511 + │ describe commit d12586fdc5021c0201392a705d6df5e6fcacb539 1512 + │ args: jj describe -m hi --color always 1513 + ○ 0c7a46ddad47 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1514 + │ prev: b0c0787a8f3a -> editing d12586fdc502 1515 + │ args: jj prev --edit --color always 1516 + ○ 873ab7a524e0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1517 + │ prev: 69a38f67d1cf -> editing b0c0787a8f3a 1518 + │ args: jj prev --edit --color always 1519 + ○ 5b5cb72ec4b8 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1520 + │ squash commits into b3e4d35c33b7046dd5e710b4401a8b08e5c2af03 1521 + │ args: jj squash --quiet -m ' this is my message : 1522 + │ hello this is my special b 1523 + │ hi \n this is \n a multi li 1524 + │ n 1525 + │ the 1526 + 1527 + │ mo' --color always 1528 + ○ 986fad765f33 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1529 + │ next: b3e4d35c33b7 -> editing 773597b3d0f1 1530 + │ args: jj next --edit --color always 1531 + ○ f42938919c54 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1532 + │ prev: 773597b3d0f1 -> editing b3e4d35c33b7 1533 + │ args: jj prev --edit --color always 1534 + ○ cdf4da0487d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1535 + │ prev: 6393780b30ec -> editing 773597b3d0f1 1536 + │ args: jj prev --edit --color always 1537 + ○ d6688e060a1a eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 1538 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 1539 + │ args: jj squash --quiet -m ' hello this is my special bo 1540 + │ hi \n this is \n a multi lin 1541 + │ no 1542 + │ ther 1543 + │ i 1544 + │ mor' --color always 1545 + ○ fff2af294d04 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1546 + │ describe commit 9eb92d2014b4ab3ebf640492fb0775987ed3adda 1547 + │ args: jj desc 1548 + ○ 28b803520ea6 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 1549 + │ describe commit df00622cb6f12b5a1f6e2e39cc84b4d4c3e547be 1550 + │ args: jj desc -m 'hi \n this is \n a multi line' 1551 + ○ 336c08cafc20 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 1552 + │ describe commit fa1b077eee7d761770d5293e6ba893c678aac280 1553 + │ args: jj desc -m 'hi \n this is \n a multi \n line' 1554 + ○ 69e12ef2e07d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1555 + │ undo operation 7374a0cd8a6616cc6a60933fd964955f178d1068641ebd88a377c428ed215dbf2962f009c687f9bae6838b6482d1e1e3fae240ad0d142d8b2bb8fd1c66bd857b 1556 + │ args: jj undo 1557 + ○ 7374a0cd8a66 eli@eli-nixos-xps 3 months ago, lasted 1 second 1558 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 1559 + │ args: jj squash --quiet 1560 + ○ 2a558963f66c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1561 + │ undo operation 2b7e1078d924e9fb7ac4bbb5761ff4cb3056c7b648eb464d1765b3c74dd771ad910874106918e4443d725bacf0bac7d55a902d1bbee7ed0631847e006cb5cc8b 1562 + │ args: jj undo 1563 + ○ 2b7e1078d924 eli@eli-nixos-xps 3 months ago, lasted 7 seconds 1564 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 1565 + │ args: jj squash 1566 + ○ ae6fc6d7b96f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1567 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 1568 + │ args: jj next --edit --color always 1569 + ○ 41674f86b372 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1570 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 1571 + │ args: jj next --edit --color always 1572 + ○ 5eb0011619b1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1573 + │ prev: 2ae3d1650045 -> editing b3e4d35c33b7 1574 + │ args: jj prev --edit --color always 1575 + ○ c02ce79c4283 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1576 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 1577 + │ args: jj prev --edit --color always 1578 + ○ 9dd9ae638561 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1579 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 1580 + │ args: jj next --edit --color always 1581 + ○ ff5870588251 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1582 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 1583 + │ args: jj next --edit --color always 1584 + ○ cd49d6aba628 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1585 + │ prev: 2ae3d1650045 -> editing b3e4d35c33b7 1586 + │ args: jj prev --edit --color always 1587 + ○ 9ca54ed66cac eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1588 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 1589 + │ args: jj prev --edit --color always 1590 + ○ 6763fc518d71 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1591 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 1592 + │ args: jj next --edit --color always 1593 + ○ 2fc1aa9d45cc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1594 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 1595 + │ args: jj prev --edit --color always 1596 + ○ ca730b90aea4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1597 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 1598 + │ args: jj next --edit --color always 1599 + ○ 34a707bfe05d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1600 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 1601 + │ args: jj prev --edit --color always 1602 + ○ 085e9bb05257 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1603 + │ prev: b0c4617ffa7d -> editing fa1b077eee7d 1604 + │ args: jj prev --edit --color always 1605 + ○ 3022b554c46f eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1606 + │ commit d719e11dd85bdb744ff66b25e25271d4a862ec09 1607 + │ args: jj commit -m hiiiii --color always 1608 + ○ 8145b341d893 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1609 + │ next: 2ae3d1650045 -> editing d719e11dd85b 1610 + │ args: jj next --edit --color always 1611 + ○ 97c3b7bf48cf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1612 + │ prev: d719e11dd85b -> editing 2ae3d1650045 1613 + │ args: jj prev --edit --color always 1614 + ○ 35f4fd06cd39 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1615 + │ next: 2ae3d1650045 -> editing d719e11dd85b 1616 + │ args: jj next --edit --color always 1617 + ○ ec440b1f43ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1618 + │ prev: d719e11dd85b -> editing 2ae3d1650045 1619 + │ args: jj prev --edit --color always 1620 + ○ f3b61e5fb0fb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1621 + │ prev: 8cd0454a21da -> editing d719e11dd85b 1622 + │ args: jj prev --edit --color always 1623 + ○ 785d92e031b6 eli@eli-nixos-xps 3 months ago, lasted 10 seconds 1624 + │ squash commits into 8462bc918128fbaff8b644f0c8990236b9ef675f 1625 + │ args: jj squash 1626 + ○ 760e2b6cec7f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1627 + │ next: 8462bc918128 -> editing b04601bd562b 1628 + │ args: jj next --edit --color always 1629 + ○ 4eb1f21ec911 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1630 + │ next: 2ae3d1650045 -> editing 8462bc918128 1631 + │ args: jj next --edit --color always 1632 + ○ 9c2a2c7a5968 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1633 + │ prev: 8462bc918128 -> editing 2ae3d1650045 1634 + │ args: jj prev --edit --color always 1635 + ○ f1664a977024 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1636 + │ prev: b04601bd562b -> editing 8462bc918128 1637 + │ args: jj prev --edit --color always 1638 + ○ 0eb8c8aa57e4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1639 + │ next: 8462bc918128 -> editing b04601bd562b 1640 + │ args: jj next --edit --color always 1641 + ○ 498bf80c28d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1642 + │ prev: b04601bd562b -> editing 8462bc918128 1643 + │ args: jj prev --edit --color always 1644 + ○ 1a1b9f69d7c5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1645 + │ prev: 380b86b14035 -> editing b04601bd562b 1646 + │ args: jj prev --edit --color always 1647 + ○ b641345bb0dc eli@eli-nixos-xps 3 months ago, lasted 21 seconds 1648 + │ squash commits into 7b9aa64334f71116151da406c22a6acff8034a79 1649 + │ args: jj squash 1650 + ○ 57c74721a175 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1651 + │ next: 7b9aa64334f7 -> editing ac5d6b68c353 1652 + │ args: jj next --edit --color always 1653 + ○ 582ea275768c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1654 + │ prev: 908c5a93a070 -> editing 7b9aa64334f7 1655 + │ args: jj prev --edit --color always 1656 + ○ ae9e34b1876f eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 1657 + │ squash commits into 76d3e5700bae704cbb5be19e24e0750d351e8b9d 1658 + │ args: jj squash 1659 + ○ f58bd48f9277 eli@eli-nixos-xps 3 months ago, lasted 43 seconds 1660 + │ squash commits into 668cc05d3e3aae7423e0529cbd7bee3244df6937 1661 + │ args: jj squash 1662 + ○ 65b81990de1b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1663 + │ rebase commit 5ed7a69853871be56aed990b217ef798412fc523 1664 + │ args: jj rebase -r @ -d u --color always 1665 + ○ 28230b698671 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1666 + │ describe commit 830e03c6c8cd63e4061406ecea11e3baa0804a4b 1667 + │ args: jj describe -m 'new steuff' --color always 1668 + ○ f050a744b838 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1669 + │ next: 72361777e19e -> editing 830e03c6c8cd 1670 + │ args: jj next --edit --color always 1671 + ○ e644b5eb7f75 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1672 + │ prev: 830e03c6c8cd -> editing 72361777e19e 1673 + │ args: jj prev --edit --color always 1674 + ○ 20f3a6a558f9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1675 + │ snapshot working copy 1676 + │ args: jj prev --edit --color always 1677 + ○ 9742b7c4ee6b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1678 + │ commit 6bfd852f2c0147705ce9868ebef6b78f732cc29d 1679 + │ args: jj commit -m extra --color always 1680 + ○ 7a797e4c5627 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1681 + │ next: 668cc05d3e3a -> editing 6bfd852f2c01 1682 + │ args: jj next --edit --color always 1683 + ○ 90229c010d34 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1684 + │ prev: 6bfd852f2c01 -> editing 668cc05d3e3a 1685 + │ args: jj prev --edit --color always 1686 + ○ 44d5c82aae91 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1687 + │ snapshot working copy 1688 + │ args: jj prev --edit --color always 1689 + ○ e8fd6539165c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1690 + │ describe commit a4e05a4b131b41b732937d14dd82e4dcd2dae3b7 1691 + │ args: jj describe -m 'this is new' --color always 1692 + ○ 9f855ceb1599 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1693 + │ new empty commit 1694 + │ args: jj new --color always 1695 + ○ 9b3f2aa41814 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1696 + │ next: 8462bc918128 -> editing 668cc05d3e3a 1697 + │ args: jj next --edit --color always 1698 + ○ 68f60c866128 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1699 + │ describe commit f813640477a0b7e6ec55b09bfbe12de75390fb95 1700 + │ args: jj describe -m hi --color always 1701 + ○ dfb756887e70 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1702 + │ snapshot working copy 1703 + │ args: jj show --color always 1704 + ○ accdaec67195 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1705 + │ next: 2ae3d1650045 -> editing 851991850ea8 1706 + │ args: jj next --edit --color always 1707 + ○ be19b860c1fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1708 + │ prev: 851991850ea8 -> editing 2ae3d1650045 1709 + │ args: jj prev --edit --color always 1710 + ○ ae7e42c0df77 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1711 + │ prev: 71256f7d85c2 -> editing 851991850ea8 1712 + │ args: jj prev --edit --color always 1713 + ○ c17cfff5ac1f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1714 + │ undo operation 4361df5107eddbc0094a58ed57de702409d25ba16e79308eefb7075d7bdbd168fd57e0f6f94a79fb7f60eddfc381ef4057c53bba96ece55930994fa34b21451c 1715 + │ args: jj undo 1716 + ○ 4361df5107ed eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 1717 + │ rebase commit 71256f7d85c2a85cd0590943198b89051aa7cebe 1718 + │ args: jj rebase -r @ -d t --color always 1719 + ○ 0da4f9de1ce1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1720 + │ undo operation 9f9e306937d410cd10ce5fcfcd814ed8cb38f3f6fe1f5886e0d81986759c74ffcdd3a527c55d3629b6e034a42c8069a780db816b283bbe174d8bb87e9a69355c 1721 + │ args: jj undo 1722 + ○ 9f9e306937d4 eli@eli-nixos-xps 3 months ago, lasted 8 milliseconds 1723 + │ abandon commit 71256f7d85c2a85cd0590943198b89051aa7cebe 1724 + │ args: jj abandon 1725 + ○ 1750a7ff0ecc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1726 + │ snapshot working copy 1727 + │ args: jj status 1728 + ○ b968c3a55edb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1729 + │ next: 851991850ea8 -> editing 737ffbb53f06 1730 + │ args: jj next --edit 1731 + ○ c1f7278bf51d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1732 + │ next: 2ae3d1650045 -> editing 851991850ea8 1733 + │ args: jj next --edit 1734 + ○ 336e04763143 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1735 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 1736 + │ args: jj next --edit 1737 + ○ 2830430ace23 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1738 + │ snapshot working copy 1739 + │ args: jj log 1740 + ○ bcf95d116310 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1741 + │ prev: 02702cffec6e -> editing 2d353c7be390 1742 + │ args: jj prev --edit --color always 1743 + ○ 81ce387110f5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1744 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 1745 + │ args: jj prev --edit --color always 1746 + ○ 19483c9bbde4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1747 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 1748 + │ args: jj prev --edit --color always 1749 + ○ 700dcf548eb5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1750 + │ prev: 4599f3e54870 -> editing 7443d2cca1bc 1751 + │ args: jj prev --edit --color always 1752 + ○ bd3219e17f17 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1753 + │ new empty commit 1754 + │ args: jj new --color always 1755 + ○ 326a0f768a0f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1756 + │ next: 7b3325ebc782 -> editing 7443d2cca1bc 1757 + │ args: jj next --edit --color always 1758 + ○ 9335cee4f0eb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1759 + │ next: 02702cffec6e -> editing 7b3325ebc782 1760 + │ args: jj next --edit --color always 1761 + ○ 54395aeea5a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1762 + │ next: 2d353c7be390 -> editing 02702cffec6e 1763 + │ args: jj next --edit --color always 1764 + ○ 799491fe5f54 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1765 + │ next: d12586fdc502 -> editing 2d353c7be390 1766 + │ args: jj next --edit --color always 1767 + ○ a9ee3831d8b7 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1768 + │ next: d648d9dc91ca -> editing d12586fdc502 1769 + │ args: jj next --edit --color always 1770 + ○ 0d20d5291b43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1771 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 1772 + │ args: jj next --edit --color always 1773 + ○ fd857d02cebe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1774 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 1775 + │ args: jj next --edit --color always 1776 + ○ cc6ad1b31b82 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1777 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 1778 + │ args: jj next --edit --color always 1779 + ○ a6d6df6a92bd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1780 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 1781 + │ args: jj next --edit --color always 1782 + ○ 659eee66e19c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1783 + │ next: 584796aea9d8 -> editing 8e967a8ded42 1784 + │ args: jj next --edit --color always 1785 + ○ d0b5f2fe74b0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1786 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 1787 + │ args: jj prev --edit --color always 1788 + ○ 73451c217bbf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1789 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 1790 + │ args: jj prev --edit --color always 1791 + ○ 93a1975e4a2b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1792 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 1793 + │ args: jj prev --edit --color always 1794 + ○ 77a8d5a85c01 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1795 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 1796 + │ args: jj prev --edit --color always 1797 + ○ 6aed2e405d8a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1798 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 1799 + │ args: jj prev --edit --color always 1800 + ○ 9a2468dda98b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1801 + │ prev: d12586fdc502 -> editing d648d9dc91ca 1802 + │ args: jj prev --edit --color always 1803 + ○ a9845c154b61 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1804 + │ prev: 2d353c7be390 -> editing d12586fdc502 1805 + │ args: jj prev --edit --color always 1806 + ○ 26b16d4d329d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1807 + │ prev: 02702cffec6e -> editing 2d353c7be390 1808 + │ args: jj prev --edit --color always 1809 + ○ 9e639bf10687 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1810 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 1811 + │ args: jj prev --edit --color always 1812 + ○ e75938ad06be eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1813 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 1814 + │ args: jj prev --edit --color always 1815 + ○ 154d18ff4be3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1816 + │ next: 7b3325ebc782 -> editing 7443d2cca1bc 1817 + │ args: jj next --edit --color always 1818 + ○ 97611ed444be eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1819 + │ next: 02702cffec6e -> editing 7b3325ebc782 1820 + │ args: jj next --edit --color always 1821 + ○ d326b076c178 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1822 + │ next: 2d353c7be390 -> editing 02702cffec6e 1823 + │ args: jj next --edit --color always 1824 + ○ 229ff65b11e9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1825 + │ next: d12586fdc502 -> editing 2d353c7be390 1826 + │ args: jj next --edit --color always 1827 + ○ f0efd6a397b3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1828 + │ prev: 2d353c7be390 -> editing d12586fdc502 1829 + │ args: jj prev --edit --color always 1830 + ○ 65ca5a954b7f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1831 + │ prev: 02702cffec6e -> editing 2d353c7be390 1832 + │ args: jj prev --edit --color always 1833 + ○ 48a7330a503b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1834 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 1835 + │ args: jj prev --edit --color always 1836 + ○ 059537c13271 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1837 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 1838 + │ args: jj prev --edit --color always 1839 + ○ 6762f0792516 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1840 + │ prev: c83ac2518973 -> editing 7443d2cca1bc 1841 + │ args: jj prev --edit --color always 1842 + ○ 35f7aeb9dbee eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 1843 + │ commit 4f46a9a3b714fdcad2ea83e60713b3910bd9925f 1844 + │ args: jj commit -m msg --color always 1845 + ○ 92128570ca7b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1846 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 1847 + │ args: jj next --edit --color always 1848 + ○ 28a4507815a4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1849 + │ next: 02702cffec6e -> editing 7b3325ebc782 1850 + │ args: jj next --edit --color always 1851 + ○ 890c5cabbbd5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1852 + │ next: 2d353c7be390 -> editing 02702cffec6e 1853 + │ args: jj next --edit --color always 1854 + ○ 724d8c1c8a0d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1855 + │ next: d12586fdc502 -> editing 2d353c7be390 1856 + │ args: jj next --edit --color always 1857 + ○ d1c7cc57a47f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1858 + │ next: d648d9dc91ca -> editing d12586fdc502 1859 + │ args: jj next --edit --color always 1860 + ○ c6a356814e90 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1861 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 1862 + │ args: jj next --edit --color always 1863 + ○ ca3f25829ea6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1864 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 1865 + │ args: jj next --edit --color always 1866 + ○ a7bfdfcb356a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1867 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 1868 + │ args: jj next --edit --color always 1869 + ○ 5487d1ef59a5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1870 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 1871 + │ args: jj prev --edit --color always 1872 + ○ 1488736338c7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1873 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 1874 + │ args: jj prev --edit --color always 1875 + ○ 4d5f07a1af43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1876 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 1877 + │ args: jj prev --edit --color always 1878 + ○ dd29242c3f33 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1879 + │ prev: d12586fdc502 -> editing d648d9dc91ca 1880 + │ args: jj prev --edit --color always 1881 + ○ af3199d24afe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1882 + │ prev: 2d353c7be390 -> editing d12586fdc502 1883 + │ args: jj prev --edit --color always 1884 + ○ 5f5e018d1fd1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1885 + │ prev: 02702cffec6e -> editing 2d353c7be390 1886 + │ args: jj prev --edit --color always 1887 + ○ d9f802be5cfb eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1888 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 1889 + │ args: jj prev --edit --color always 1890 + ○ abaf2ad6b6dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1891 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 1892 + │ args: jj prev --edit --color always 1893 + ○ 2541871b0c06 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1894 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 1895 + │ args: jj next --edit --color always 1896 + ○ 272b10b01813 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1897 + │ next: 02702cffec6e -> editing 7b3325ebc782 1898 + │ args: jj next --edit --color always 1899 + ○ fe99f6725576 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1900 + │ next: 2d353c7be390 -> editing 02702cffec6e 1901 + │ args: jj next --edit --color always 1902 + ○ 4b0e484fc47c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1903 + │ prev: 02702cffec6e -> editing 2d353c7be390 1904 + │ args: jj prev --edit --color always 1905 + ○ dc4839f675dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1906 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 1907 + │ args: jj prev --edit --color always 1908 + ○ e559ab536ad3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1909 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 1910 + │ args: jj prev --edit --color always 1911 + ○ 466323d191fa eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1912 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 1913 + │ args: jj next --edit --color always 1914 + ○ dc46a3d722ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1915 + │ next: 02702cffec6e -> editing 7b3325ebc782 1916 + │ args: jj next --edit --color always 1917 + ○ ee8bc69093a7 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1918 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 1919 + │ args: jj prev --edit --color always 1920 + ○ 703e4cb33297 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1921 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 1922 + │ args: jj prev --edit --color always 1923 + ○ 79548909f1d8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 1924 + │ prev: 5e12535fc62e -> editing 4f46a9a3b714 1925 + │ args: jj prev --edit --color always 1926 + ○ 4062e885a791 eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 1927 + │ commit b30ff64921da4b2972e4493d039b6549cec96ffb 1928 + │ args: jj commit -m 'hello this is my message to you :) ' --color always 1929 + ○ 2cf737c2954d eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 1930 + │ commit 9cf52a9c549e7c3b16dded8a6f78bb354a3b62e5 1931 + │ args: jj commit -m aorsietnaoriestnoaiernstoaienrstoieanrostieanstoiaernstoiaenrstoienaorisentoaiesnrtoairesntoaiernstoieanrsotieanrsotienaoriesntoiaenrsotien --color always 1932 + ○ c5affee8b149 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1933 + │ commit f387f2b17733e7873f03c6c3bb40809e0075e667 1934 + │ args: jj commit -m 'hello this is my special box' --color always 1935 + ○ bea5432fd07b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1936 + │ commit 2aa53e699ccfb2f3ae9e7f880f0c59bfbc9567a3 1937 + │ args: jj commit -m 'this is my message :)' --color always 1938 + ○ 7deffc5d3758 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1939 + │ commit f08821057c490dc735b3afb66ec1ff13f6939340 1940 + │ args: jj commit -m 'message is centered successfully yay' --color always 1941 + ○ 5c45e9b5f29b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1942 + │ commit 24f20c3ec9492384fcd100013d3901a6483c477a 1943 + │ args: jj commit -m heyqqCq --color always 1944 + ○ e420cbd54c0a eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1945 + │ new empty commit 1946 + │ args: jj new --color always 1947 + ○ d10977dd23a1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1948 + │ new empty commit 1949 + │ args: jj new --color always 1950 + ○ 9763e9ec3d90 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1951 + │ commit cba27c8d1e154cc67c0aa9606ea578635187e1cb 1952 + │ args: jj commit -m 'message ' --color always 1953 + ○ 36b32fa3461f eli@eli-nixos-xps 3 months ago, lasted 5 milliseconds 1954 + │ commit ab22d4a9f486f28f45ab900bc29fd5c4b9094b51 1955 + │ args: jj commit -m 'hello this is a box' --color always 1956 + ○ 939266a0e6a0 eli@eli-nixos-xps 3 months ago, lasted 6 milliseconds 1957 + │ commit ec2f5045174e0f48baec7e3879f227ebc244c9c8 1958 + │ args: jj commit -m 'uy;yu;yu;yu' --color always 1959 + ○ b576316b8c25 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 1960 + │ new empty commit 1961 + │ args: jj new --color always 1962 + ○ 4acc65804797 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1963 + │ next: 529712756e2c -> editing 812a118be9e4 1964 + │ args: jj next --edit --color always 1965 + ○ 45a920b402a6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1966 + │ next: c3e259d4c40f -> editing 529712756e2c 1967 + │ args: jj next --edit --color always 1968 + ○ fc6952b1d168 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1969 + │ prev: 529712756e2c -> editing c3e259d4c40f 1970 + │ args: jj prev --edit --color always 1971 + ○ c4d3e6aab846 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1972 + │ prev: 812a118be9e4 -> editing 529712756e2c 1973 + │ args: jj prev --edit --color always 1974 + ○ ea455132406a eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1975 + │ next: 529712756e2c -> editing 812a118be9e4 1976 + │ args: jj next --edit --color always 1977 + ○ 4dd75d840609 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1978 + │ next: c3e259d4c40f -> editing 529712756e2c 1979 + │ args: jj next --edit --color always 1980 + ○ b813b95ab6fe eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1981 + │ prev: 529712756e2c -> editing c3e259d4c40f 1982 + │ args: jj prev --edit --color always 1983 + ○ 5090c4380409 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1984 + │ next: c3e259d4c40f -> editing 529712756e2c 1985 + │ args: jj next --edit --color always 1986 + ○ b6e907371166 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1987 + │ prev: 529712756e2c -> editing c3e259d4c40f 1988 + │ args: jj prev --edit --color always 1989 + ○ d089e7168df3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1990 + │ prev: 812a118be9e4 -> editing 529712756e2c 1991 + │ args: jj prev --edit --color always 1992 + ○ ff679449c3fe eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1993 + │ next: 529712756e2c -> editing 812a118be9e4 1994 + │ args: jj next --edit --color always 1995 + ○ 3432aeaa65cc eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 1996 + │ prev: 812a118be9e4 -> editing 529712756e2c 1997 + │ args: jj prev --edit --color always 1998 + ○ ed7c0142344c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 1999 + │ next: 529712756e2c -> editing 812a118be9e4 2000 + │ args: jj next --edit --color always 2001 + ○ 9e5d19c832a1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2002 + │ next: c3e259d4c40f -> editing 529712756e2c 2003 + │ args: jj next --edit --color always 2004 + ○ 07c0d2fa4c26 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2005 + │ prev: 529712756e2c -> editing c3e259d4c40f 2006 + │ args: jj prev --edit --color always 2007 + ○ ff3c98e1f094 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2008 + │ prev: 812a118be9e4 -> editing 529712756e2c 2009 + │ args: jj prev --edit --color always 2010 + ○ 7701ea326a98 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2011 + │ next: 529712756e2c -> editing 812a118be9e4 2012 + │ args: jj next --edit --color always 2013 + ○ 648842226533 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2014 + │ next: c3e259d4c40f -> editing 529712756e2c 2015 + │ args: jj next --edit --color always 2016 + ○ b3efc9158284 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2017 + │ prev: 529712756e2c -> editing c3e259d4c40f 2018 + │ args: jj prev --edit --color always 2019 + ○ b30db7028cb0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2020 + │ prev: 812a118be9e4 -> editing 529712756e2c 2021 + │ args: jj prev --edit --color always 2022 + ○ 58f8f35f0c59 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2023 + │ next: 529712756e2c -> editing 812a118be9e4 2024 + │ args: jj next --edit --color always 2025 + ○ 3e337184c006 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2026 + │ prev: 812a118be9e4 -> editing 529712756e2c 2027 + │ args: jj prev --edit --color always 2028 + ○ 6837e102ec2d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2029 + │ next: 529712756e2c -> editing 812a118be9e4 2030 + │ args: jj next --edit --color always 2031 + ○ 74fe32ec91bb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2032 + │ prev: 812a118be9e4 -> editing 529712756e2c 2033 + │ args: jj prev --edit --color always 2034 + ○ 1cdd83d13b8b eli@eli-nixos-xps 3 months ago, lasted 26 seconds 2035 + │ Resolve conflicts in commit 89812fd9fe519674921bc7a055c3fbfdb6627c53 2036 + │ args: jj resolve 2037 + ○ 8b77e307548c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2038 + │ next: 529712756e2c -> editing 89812fd9fe51 2039 + │ args: jj next --edit --color always 2040 + ○ 865dd48a5308 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2041 + │ prev: 89812fd9fe51 -> editing 529712756e2c 2042 + │ args: jj prev --edit --color always 2043 + ○ e3d74708f7fa eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2044 + │ next: 529712756e2c -> editing 89812fd9fe51 2045 + │ args: jj next --edit --color always 2046 + ○ 8044b5f8756f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2047 + │ prev: 89812fd9fe51 -> editing 529712756e2c 2048 + │ args: jj prev --edit --color always 2049 + ○ f891c7dedbd5 eli@eli-nixos-xps 3 months ago, lasted 14 seconds 2050 + │ unsquash commit 4e7f1d7c6a19ceb88be8ade764618ade88f4e3c6 2051 + │ args: jj unsquash -i 2052 + ○ 26a792a10ede eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2053 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 2054 + │ args: jj next --edit --color always 2055 + ○ 9b33fe9b04cf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2056 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 2057 + │ args: jj prev --edit --color always 2058 + ○ 47116a073337 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2059 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 2060 + │ args: jj next --edit --color always 2061 + ○ 3c883cc7eb68 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2062 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 2063 + │ args: jj prev --edit --color always 2064 + ○ bac5b3cb41da eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2065 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 2066 + │ args: jj next --edit --color always 2067 + ○ 94dd56d26bdd eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2068 + │ next: c3e259d4c40f -> editing 52a595a66023 2069 + │ args: jj next --edit --color always 2070 + ○ b1407ca74bf5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2071 + │ prev: 52a595a66023 -> editing c3e259d4c40f 2072 + │ args: jj prev --edit --color always 2073 + ○ 189250d7ae78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2074 + │ next: c3e259d4c40f -> editing 52a595a66023 2075 + │ args: jj next --edit --color always 2076 + ○ 9def8b9728e0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2077 + │ prev: 52a595a66023 -> editing c3e259d4c40f 2078 + │ args: jj prev --edit --color always 2079 + ○ 7473fe0709ad eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2080 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 2081 + │ args: jj prev --edit --color always 2082 + ○ f77cc3de0175 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2083 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 2084 + │ args: jj next --edit --color always 2085 + ○ d8a035ab73d8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2086 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 2087 + │ args: jj prev --edit --color always 2088 + ○ 7e9c52564881 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2089 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 2090 + │ args: jj next --edit --color always 2091 + ○ ea5d1667d036 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2092 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 2093 + │ args: jj prev --edit --color always 2094 + ○ c662942c1581 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2095 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 2096 + │ args: jj next --edit --color always 2097 + ○ aabb0cc3448d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2098 + │ next: c3e259d4c40f -> editing 52a595a66023 2099 + │ args: jj next --edit --color always 2100 + ○ 76e6780889f2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2101 + │ prev: 52a595a66023 -> editing c3e259d4c40f 2102 + │ args: jj prev --edit --color always 2103 + ○ 4ade63236eaf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2104 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 2105 + │ args: jj prev --edit --color always 2106 + ○ 5acecc077b14 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2107 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 2108 + │ args: jj next --edit --color always 2109 + ○ 4a08b9a3825c eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 2110 + │ snapshot working copy 2111 + │ args: jj show --color always 2112 + ○ 46eee48a6644 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 2113 + │ snapshot working copy 2114 + │ args: jj show --color always 2115 + ○ 53df8b08e15c eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 2116 + │ snapshot working copy 2117 + │ args: jj show --color always 2118 + ○ 96cddd289069 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2119 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2120 + │ args: jj prev --edit --color always 2121 + ○ b2a73f7bef1c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2122 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2123 + │ args: jj next --edit --color always 2124 + ○ 7fbf3b8537b9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2125 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2126 + │ args: jj prev --edit --color always 2127 + ○ dc12fa78fd71 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2128 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2129 + │ args: jj next --edit --color always 2130 + ○ 2536ad8b1986 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2131 + │ next: c3e259d4c40f -> editing 521c21d7e342 2132 + │ args: jj next --edit --color always 2133 + ○ d50789f34158 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2134 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2135 + │ args: jj prev --edit --color always 2136 + ○ b62287a0dd09 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 2137 + │ next: c3e259d4c40f -> editing 521c21d7e342 2138 + │ args: jj next --edit --color always 2139 + ○ 2860cf74f393 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2140 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2141 + │ args: jj prev --edit --color always 2142 + ○ 1e7781ebaf4b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2143 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2144 + │ args: jj prev --edit --color always 2145 + ○ 66eaf786be63 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 2146 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2147 + │ args: jj next --edit --color always 2148 + ○ bf1a2d5cc2d0 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2149 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2150 + │ args: jj prev --edit --color always 2151 + ○ 1830b4a30f34 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2152 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2153 + │ args: jj next --edit --color always 2154 + ○ 9a3e1dcb4acf eli@eli-nixos-xps 4 months ago, lasted 8 milliseconds 2155 + │ next: c3e259d4c40f -> editing 521c21d7e342 2156 + │ args: jj next --edit --color always 2157 + ○ 288e73db4714 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2158 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2159 + │ args: jj prev --edit --color always 2160 + ○ 8b9689bfc71a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2161 + │ next: c3e259d4c40f -> editing 521c21d7e342 2162 + │ args: jj next --edit --color always 2163 + ○ cce7d2d3304e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2164 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2165 + │ args: jj prev --edit --color always 2166 + ○ 0bded7ceeab2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2167 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2168 + │ args: jj prev --edit --color always 2169 + ○ 2fb76a244fb9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2170 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2171 + │ args: jj next --edit --color always 2172 + ○ 02652732f2b8 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2173 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2174 + │ args: jj prev --edit --color always 2175 + ○ 9d482485788b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2176 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2177 + │ args: jj next --edit --color always 2178 + ○ ddf0d71786dd eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2179 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2180 + │ args: jj prev --edit --color always 2181 + ○ 1eb5e9015218 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2182 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2183 + │ args: jj next --edit --color always 2184 + ○ 3c72afc3689a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2185 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2186 + │ args: jj prev --edit --color always 2187 + ○ 941686f7023e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2188 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2189 + │ args: jj next --edit --color always 2190 + ○ 1e57b6430fe2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2191 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2192 + │ args: jj prev --edit --color always 2193 + ○ c9be0ac314d7 eli@eli-nixos-xps 4 months ago, lasted 2 milliseconds 2194 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2195 + │ args: jj next --edit --color always 2196 + ○ acddfc4548e6 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2197 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2198 + │ args: jj prev --edit --color always 2199 + ○ 21114d1d41b6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2200 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2201 + │ args: jj next --edit --color always 2202 + ○ 625c40d0ae20 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2203 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2204 + │ args: jj prev --edit --color always 2205 + ○ 0f68dc615fda eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2206 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2207 + │ args: jj next --edit --color always 2208 + ○ 70921283c4d7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2209 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2210 + │ args: jj prev --edit --color always 2211 + ○ 0cd7f66b0653 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2212 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2213 + │ args: jj next --edit --color always 2214 + ○ 2d64a9b77df5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2215 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2216 + │ args: jj prev --edit --color always 2217 + ○ be1686f17364 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2218 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2219 + │ args: jj next --edit --color always 2220 + ○ 188e1b894a12 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2221 + │ next: c3e259d4c40f -> editing 521c21d7e342 2222 + │ args: jj next --edit --color always 2223 + ○ 6a1b77d070a4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2224 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2225 + │ args: jj prev --edit --color always 2226 + ○ 60bf96d15292 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2227 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2228 + │ args: jj prev --edit --color always 2229 + ○ 62d723ce7e9f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2230 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2231 + │ args: jj next --edit --color always 2232 + ○ ff1918f8c2e6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2233 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2234 + │ args: jj prev --edit --color always 2235 + ○ 4613299bb4f8 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2236 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2237 + │ args: jj next --edit --color always 2238 + ○ cb6eafe5f21e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2239 + │ next: c3e259d4c40f -> editing 521c21d7e342 2240 + │ args: jj next --edit --color always 2241 + ○ 265ec7e3d2f5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2242 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2243 + │ args: jj prev --edit --color always 2244 + ○ fbb272511232 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2245 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2246 + │ args: jj prev --edit --color always 2247 + ○ bb7005782ef8 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2248 + │ prev: ec72e9beb82b -> editing 2e8df5e76d5d 2249 + │ args: jj prev --edit --color always 2250 + ○ 07102904b180 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2251 + │ next: 7e7636eeb1af -> 2e8df5e76d5d 2252 + │ args: jj next --color always 2253 + ○ fdb5d068e295 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2254 + │ next: e9f6fe737058 -> 521c21d7e342 2255 + │ args: jj next --color always 2256 + ○ c9525b534aca eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2257 + │ next: 626e2b4b3c96 -> c3e259d4c40f 2258 + │ args: jj next --color always 2259 + ○ 93fd2ca99e91 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2260 + │ prev: c75315664272 -> 000000000000 2261 + │ args: jj prev --color always 2262 + ○ 96e53e4b0e04 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2263 + │ prev: 2e8df5e76d5d -> c3e259d4c40f 2264 + │ args: jj prev --color always 2265 + ○ a3e39073aa69 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2266 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2267 + │ args: jj next --edit --color always 2268 + ○ e750cff692c2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2269 + │ next: c3e259d4c40f -> editing 521c21d7e342 2270 + │ args: jj next --edit --color always 2271 + ○ 54121e08e440 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2272 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2273 + │ args: jj prev --edit --color always 2274 + ○ 5ca36e9b53bf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2275 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2276 + │ args: jj prev --edit --color always 2277 + ○ 6ec1aa19a2fa eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2278 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2279 + │ args: jj next --edit --color always 2280 + ○ a9d79456cf8d eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2281 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2282 + │ args: jj prev --edit --color always 2283 + ○ cb9d546b502f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2284 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2285 + │ args: jj next --edit --color always 2286 + ○ 14629b4019ec eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2287 + │ next: c3e259d4c40f -> editing 521c21d7e342 2288 + │ args: jj next --edit --color always 2289 + ○ 8930e8174138 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2290 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2291 + │ args: jj prev --edit --color always 2292 + ○ 298017db399e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2293 + │ next: c3e259d4c40f -> editing 521c21d7e342 2294 + │ args: jj next --edit --color always 2295 + ○ 8827ed343b41 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2296 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2297 + │ args: jj prev --edit --color always 2298 + ○ ec5f272eccd5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2299 + │ next: c3e259d4c40f -> editing 521c21d7e342 2300 + │ args: jj next --edit --color always 2301 + ○ 303f15a70400 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2302 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2303 + │ args: jj prev --edit --color always 2304 + ○ 3859b383769e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2305 + │ next: c3e259d4c40f -> editing 521c21d7e342 2306 + │ args: jj next --edit --color always 2307 + ○ 79c25421c6d9 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2308 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2309 + │ args: jj prev --edit --color always 2310 + ○ dc627b3c3795 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2311 + │ next: c3e259d4c40f -> editing 521c21d7e342 2312 + │ args: jj next --edit --color always 2313 + ○ 5a20d11d45e1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2314 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2315 + │ args: jj prev --edit --color always 2316 + ○ c10a13e84da0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2317 + │ next: c3e259d4c40f -> editing 521c21d7e342 2318 + │ args: jj next --edit --color always 2319 + ○ b305ee379579 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2320 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2321 + │ args: jj prev --edit --color always 2322 + ○ 24929ef49907 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2323 + │ next: c3e259d4c40f -> editing 521c21d7e342 2324 + │ args: jj next --edit --color always 2325 + ○ 1bf9595cca4b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2326 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2327 + │ args: jj prev --edit --color always 2328 + ○ 62035b395f15 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2329 + │ next: c3e259d4c40f -> editing 521c21d7e342 2330 + │ args: jj next --edit --color always 2331 + ○ 7044696a7592 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2332 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2333 + │ args: jj prev --edit --color always 2334 + ○ e551be4ea804 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2335 + │ next: c3e259d4c40f -> editing 521c21d7e342 2336 + │ args: jj next --edit --color always 2337 + ○ 0e125b60c0ae eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2338 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2339 + │ args: jj prev --edit --color always 2340 + ○ b0de9fef53de eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2341 + │ next: c3e259d4c40f -> editing 521c21d7e342 2342 + │ args: jj next --edit --color always 2343 + ○ 5ca83175b430 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2344 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2345 + │ args: jj prev --edit --color always 2346 + ○ 70f020c9b338 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2347 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2348 + │ args: jj prev --edit --color always 2349 + ○ c9a30a1eb29a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2350 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2351 + │ args: jj next --edit --color always 2352 + ○ b21771f68b6b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2353 + │ next: c3e259d4c40f -> editing 521c21d7e342 2354 + │ args: jj next --edit --color always 2355 + ○ 74336ca3ded1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2356 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2357 + │ args: jj prev --edit --color always 2358 + ○ 0ece8c7daaf3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2359 + │ next: c3e259d4c40f -> editing 521c21d7e342 2360 + │ args: jj next --edit --color always 2361 + ○ 7b092b927800 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2362 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2363 + │ args: jj prev --edit --color always 2364 + ○ a812c85e447a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2365 + │ next: c3e259d4c40f -> editing 521c21d7e342 2366 + │ args: jj next --edit --color always 2367 + ○ 4e595ed0176b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2368 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2369 + │ args: jj prev --edit --color always 2370 + ○ 0e2a4b24272c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2371 + │ next: c3e259d4c40f -> editing 521c21d7e342 2372 + │ args: jj next --edit --color always 2373 + ○ 14c734dca028 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2374 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2375 + │ args: jj prev --edit --color always 2376 + ○ c7f02038a6a1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2377 + │ next: c3e259d4c40f -> editing 521c21d7e342 2378 + │ args: jj next --edit --color always 2379 + ○ a3ec5d8c505e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2380 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2381 + │ args: jj prev --edit --color always 2382 + ○ fa5c3595a0c5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2383 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2384 + │ args: jj prev --edit --color always 2385 + ○ a50c053607d9 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2386 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2387 + │ args: jj next --edit --color always 2388 + ○ 1550645799d8 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2389 + │ next: c3e259d4c40f -> editing 521c21d7e342 2390 + │ args: jj next --edit --color always 2391 + ○ 37b626086506 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2392 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2393 + │ args: jj prev --edit --color always 2394 + ○ b11a2b31d1fc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2395 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2396 + │ args: jj prev --edit --color always 2397 + ○ c76e2c1ba3d5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2398 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2399 + │ args: jj next --edit --color always 2400 + ○ ddae82c9c2b0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2401 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2402 + │ args: jj prev --edit --color always 2403 + ○ 4e4824142865 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2404 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2405 + │ args: jj next --edit --color always 2406 + ○ 59900065451e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2407 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2408 + │ args: jj prev --edit --color always 2409 + ○ 8c95241bd3de eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2410 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2411 + │ args: jj next --edit --color always 2412 + ○ 47b1b1650d83 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2413 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2414 + │ args: jj prev --edit --color always 2415 + ○ b1321c4dd3c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2416 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2417 + │ args: jj next --edit --color always 2418 + ○ 6c9c18c93f62 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2419 + │ next: c3e259d4c40f -> editing 521c21d7e342 2420 + │ args: jj next --edit --color always 2421 + ○ 5f5db1d8a732 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2422 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2423 + │ args: jj prev --edit --color always 2424 + ○ 0adf0f399fe6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2425 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2426 + │ args: jj prev --edit --color always 2427 + ○ eb2d1230ddab eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2428 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2429 + │ args: jj next --edit --color always 2430 + ○ 4fc71c8b882c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2431 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2432 + │ args: jj prev --edit --color always 2433 + ○ f1c9cb8377b5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2434 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2435 + │ args: jj next --edit --color always 2436 + ○ a499bf3496d5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2437 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2438 + │ args: jj prev --edit --color always 2439 + ○ 89dbc96c27f7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2440 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2441 + │ args: jj next --edit --color always 2442 + ○ 0e0eb171574f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2443 + │ next: c3e259d4c40f -> editing 521c21d7e342 2444 + │ args: jj next --edit --color always 2445 + ○ 3a339a49d855 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2446 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2447 + │ args: jj prev --edit --color always 2448 + ○ be038bce99ee eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2449 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2450 + │ args: jj prev --edit --color always 2451 + ○ c275a93a9fdf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2452 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2453 + │ args: jj next --edit --color always 2454 + ○ 1a162eec5853 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2455 + │ next: c3e259d4c40f -> editing 521c21d7e342 2456 + │ args: jj next --edit --color always 2457 + ○ a0553eceaf86 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2458 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2459 + │ args: jj prev --edit --color always 2460 + ○ f13ef21a91fd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2461 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2462 + │ args: jj prev --edit --color always 2463 + ○ 45555b272b38 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2464 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2465 + │ args: jj next --edit --color always 2466 + ○ 9a3d1cb3a616 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2467 + │ next: c3e259d4c40f -> editing 521c21d7e342 2468 + │ args: jj next --edit --color always 2469 + ○ b6acf5153748 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2470 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2471 + │ args: jj prev --edit --color always 2472 + ○ acc7561596ea eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2473 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2474 + │ args: jj prev --edit --color always 2475 + ○ 552c8cae9b4f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2476 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2477 + │ args: jj next --edit --color always 2478 + ○ d4ce5209c1ae eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2479 + │ next: c3e259d4c40f -> editing 521c21d7e342 2480 + │ args: jj next --edit --color always 2481 + ○ ee6a71692233 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2482 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2483 + │ args: jj prev --edit --color always 2484 + ○ eb1aff4779b9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2485 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2486 + │ args: jj prev --edit --color always 2487 + ○ bb7776dc84b3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2488 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 2489 + │ args: jj next --edit --color always 2490 + ○ cbb5b3dd8bbc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2491 + │ next: c3e259d4c40f -> editing 521c21d7e342 2492 + │ args: jj next --edit --color always 2493 + ○ 8cfc90db4225 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2494 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 2495 + │ args: jj prev --edit --color always 2496 + ○ 227d2056026b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2497 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 2498 + │ args: jj prev --edit --color always 2499 + ○ 3f2f9f0acdf2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2500 + │ snapshot working copy 2501 + │ args: jj log 2502 + ○ ce9b59ecd88f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2503 + │ snapshot working copy 2504 + │ args: jj log --color always 2505 + ○ bd500d890bdc eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2506 + │ commit 90f2e6343227cd1e1b548125720cfa540c1ea99b 2507 + │ args: jj commit -m 'coloured output doesn\'t crash' 2508 + ○ b6227f6ffda3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2509 + │ next: c3e259d4c40f -> editing 90f2e6343227 2510 + │ args: jj next --edit --color always 2511 + ○ 8dde3b915363 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2512 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2513 + │ args: jj prev --edit --color always 2514 + ○ db850233e2c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2515 + │ next: c3e259d4c40f -> editing 90f2e6343227 2516 + │ args: jj next --edit --color always 2517 + ○ cc9b8d8bd163 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2518 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2519 + │ args: jj prev --edit --color always 2520 + ○ 76658edd2e06 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2521 + │ next: c3e259d4c40f -> editing 90f2e6343227 2522 + │ args: jj next --edit --color always 2523 + ○ 08535b0a2712 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2524 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2525 + │ args: jj prev --edit --color always 2526 + ○ 2ea5ebd7e56b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2527 + │ next: c3e259d4c40f -> editing 90f2e6343227 2528 + │ args: jj next --edit 2529 + ○ 8ae69b1ed672 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2530 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2531 + │ args: jj prev --edit 2532 + ○ cf8779e0f3d4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2533 + │ next: c3e259d4c40f -> editing 90f2e6343227 2534 + │ args: jj next --edit 2535 + ○ ff800600031d eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2536 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2537 + │ args: jj prev --edit 2538 + ○ 338e61aff388 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2539 + │ next: c3e259d4c40f -> editing 90f2e6343227 2540 + │ args: jj next --edit 2541 + ○ c12bdbdc91e4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2542 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2543 + │ args: jj prev --edit 2544 + ○ 9c0e28d573e0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2545 + │ next: c3e259d4c40f -> editing 90f2e6343227 2546 + │ args: jj next --edit 2547 + ○ f9a529943492 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2548 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2549 + │ args: jj prev --edit 2550 + ○ f184bbd7591a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2551 + │ next: c3e259d4c40f -> editing 90f2e6343227 2552 + │ args: jj next --edit 2553 + ○ af7185cc0530 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2554 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2555 + │ args: jj prev --edit 2556 + ○ ff437a3c151f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2557 + │ next: c3e259d4c40f -> editing 90f2e6343227 2558 + │ args: jj next --edit 2559 + ○ 76c08bd4cd7e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2560 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2561 + │ args: jj prev --edit 2562 + ○ 71802ff474fe eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2563 + │ next: c3e259d4c40f -> editing 90f2e6343227 2564 + │ args: jj next --edit 2565 + ○ 6bbff410b809 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2566 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 2567 + │ args: jj prev --edit 2568 + ○ 74055f627673 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2569 + │ undo operation 37033e64433ec9ffeb78b8b2385317546db529f3e598bfac36841a82e26247bf6867dadcddc658ac4a600d1d3c893d7ef7e8900e6823d6e9f0ebdd5b4b5abad9 2570 + │ args: jj undo 2571 + ○ 37033e64433e eli@eli-nixos-xps 4 months ago, lasted 6 seconds 2572 + │ edit commit 90f2e6343227cd1e1b548125720cfa540c1ea99b 2573 + │ args: jj diffedit 2574 + ○ 5ff0b2824157 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2575 + │ snapshot working copy 2576 + │ args: jj diffedit 2577 + ○ 4fc1e13a19ff eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2578 + │ snapshot working copy 2579 + ○ 14424d5306c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2580 + │ undo operation 7dcfbc3780b280cc11bb2fb0d5cf9075b3f7fac3aac71059ebede06347dc7f8ef3799ecbbdf785ac8a9f0df052808bbdfbb6cb164ee7709bd443fdb6b2f878d7 2581 + │ args: jj undo 2582 + ○ 7dcfbc3780b2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2583 + │ undo operation 95b602744a8fe36708030676b2e1f40ee58f40cbb3e4beb523d0fd8da02d7b718cea7a72308154641afd811cbaa5188c4c68c9f2c6c273c401b01ddae7b889c8 2584 + │ args: jj undo 2585 + ○ 95b602744a8f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2586 + │ undo operation 72c1ec8c7d392bd9987f66baa8588e47db18fe62f9122925955838336a4e6d25810e1ce633490b04c5ce2441f734b09b237341a03aa07755ba03b17849fee228 2587 + │ args: jj undo 2588 + ○ 72c1ec8c7d39 eli@eli-nixos-xps 4 months ago, lasted 24 seconds 2589 + │ unsquash commit 0b23d59660dde14672186533f83410c817fe2253 2590 + │ args: jj unsquash 2591 + ○ c7dd5622e710 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2592 + │ edit commit 0b23d59660dde14672186533f83410c817fe2253 2593 + ○ 2b09d8e6834c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2594 + │ edit commit c3e259d4c40f5266866c071ebd0ae26ed345db8b 2595 + ○ 61ecf73f26dd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2596 + │ edit commit 0b23d59660dde14672186533f83410c817fe2253 2597 + ○ fe8405f4bb65 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2598 + │ undo operation ef2d82b718a7c7459a43bdd8165a187559d14b379a8290cf20f057d1de7adf07954c426dfbae3bc4475c714684c09ceabe2366de2d6f4446f623c9116c942132 2599 + │ args: jj undo 2600 + ○ ef2d82b718a7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2601 + │ unsquash commit 5c4af7c8dcc487218176b163a768f2d9dac7af94 2602 + │ args: jj unsquash 2603 + ○ 1102529644a1 eli@eli-nixos-xps 4 months ago, lasted 7 seconds 2604 + │ squash commits into 64547a51e86a41425f448e5d7cfbf8c0e8d0e850 2605 + │ args: jj squash 2606 + ○ da2252f9bf53 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2607 + │ next: 64547a51e86a -> editing f51e5ba830a7 2608 + │ args: jj next --edit 2609 + ○ f4c4048bf879 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2610 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2611 + │ args: jj prev --edit 2612 + ○ cd9dc6cc1075 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2613 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2614 + │ args: jj prev --edit 2615 + ○ a5184f545767 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2616 + │ next: f51e5ba830a7 -> editing a2072c652a16 2617 + │ args: jj next --edit 2618 + ○ 55b7036330ca eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2619 + │ next: 64547a51e86a -> editing f51e5ba830a7 2620 + │ args: jj next --edit 2621 + ○ df0cf200dd78 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2622 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2623 + │ args: jj prev --edit 2624 + ○ 2b0256951a63 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2625 + │ next: 64547a51e86a -> editing f51e5ba830a7 2626 + │ args: jj next --edit 2627 + ○ 99161323247e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2628 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2629 + │ args: jj prev --edit 2630 + ○ b63f9ee657b1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2631 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2632 + │ args: jj prev --edit 2633 + ○ a3be6b60cc83 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2634 + │ next: f51e5ba830a7 -> editing a2072c652a16 2635 + │ args: jj next --edit 2636 + ○ 1672dd057331 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2637 + │ next: 64547a51e86a -> editing f51e5ba830a7 2638 + │ args: jj next --edit 2639 + ○ 322e3e21b114 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2640 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2641 + │ args: jj prev --edit 2642 + ○ 2b91c9115816 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2643 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2644 + │ args: jj prev --edit 2645 + ○ d13b9782f928 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2646 + │ next: f51e5ba830a7 -> editing a2072c652a16 2647 + │ args: jj next --edit 2648 + ○ c06406de9bec eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2649 + │ next: 64547a51e86a -> editing f51e5ba830a7 2650 + │ args: jj next --edit 2651 + ○ 191f39b50a03 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2652 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2653 + │ args: jj prev --edit 2654 + ○ 7ddb6f9f7f7d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2655 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2656 + │ args: jj prev --edit 2657 + ○ e9fe8388c223 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2658 + │ next: f51e5ba830a7 -> editing a2072c652a16 2659 + │ args: jj next --edit 2660 + ○ 56320a7efdbf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2661 + │ next: 64547a51e86a -> editing f51e5ba830a7 2662 + │ args: jj next --edit 2663 + ○ 8683910c46cc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2664 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2665 + │ args: jj prev --edit 2666 + ○ 3228ecd65eed eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2667 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2668 + │ args: jj prev --edit 2669 + ○ bc86e91f8c45 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2670 + │ next: f51e5ba830a7 -> editing a2072c652a16 2671 + │ args: jj next --edit 2672 + ○ b14a7306430c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2673 + │ next: 64547a51e86a -> editing f51e5ba830a7 2674 + │ args: jj next --edit 2675 + ○ 19d12c365774 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2676 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2677 + │ args: jj prev --edit 2678 + ○ 091d4d50f84c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2679 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2680 + │ args: jj prev --edit 2681 + ○ 29827c5ab0a6 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2682 + │ next: f51e5ba830a7 -> editing a2072c652a16 2683 + │ args: jj next --edit 2684 + ○ 35f4390f3a70 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2685 + │ next: 64547a51e86a -> editing f51e5ba830a7 2686 + │ args: jj next --edit 2687 + ○ 13645836db4a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2688 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2689 + │ args: jj prev --edit 2690 + ○ dfcfae826731 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2691 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2692 + │ args: jj prev --edit 2693 + ○ 9d3ae4dfd316 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2694 + │ prev: c57d0697f3ae -> editing a2072c652a16 2695 + │ args: jj prev --edit 2696 + ○ eb127aefcc53 eli@eli-nixos-xps 4 months ago, lasted 10 milliseconds 2697 + │ next: caf7abf92a9c -> a2072c652a16 2698 + │ args: jj next 2699 + ○ f11f0cfc71ae eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2700 + │ next: 39a5a9614fd5 -> f51e5ba830a7 2701 + │ args: jj next 2702 + ○ 73862d6982de eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2703 + │ next: 4cbf3b07bf3d -> 64547a51e86a 2704 + │ args: jj next 2705 + ○ ade9498294ef eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2706 + │ prev: d4994ad7ce03 -> 000000000000 2707 + │ args: jj prev 2708 + ○ dd78e1c58afd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2709 + │ prev: a2072c652a16 -> 64547a51e86a 2710 + │ args: jj prev 2711 + ○ c79708df4de1 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2712 + │ next: f51e5ba830a7 -> editing a2072c652a16 2713 + │ args: jj next --edit 2714 + ○ 9b445ebb6437 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2715 + │ next: 64547a51e86a -> editing f51e5ba830a7 2716 + │ args: jj next --edit 2717 + ○ 871ec534bb1f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2718 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2719 + │ args: jj prev --edit 2720 + ○ 14c42d029fe4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2721 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2722 + │ args: jj prev --edit 2723 + ○ 87f675434e11 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2724 + │ next: f51e5ba830a7 -> editing a2072c652a16 2725 + │ args: jj next --edit 2726 + ○ 21c92e2c9f01 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2727 + │ next: 64547a51e86a -> editing f51e5ba830a7 2728 + │ args: jj next --edit 2729 + ○ 2409bfee4f6c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2730 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2731 + │ args: jj prev --edit 2732 + ○ dd19a36d22c7 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2733 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2734 + │ args: jj prev --edit 2735 + ○ 62f5810c773f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2736 + │ prev: 5ef01377ca95 -> editing a2072c652a16 2737 + │ args: jj prev --edit 2738 + ○ da7e56d58b3c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2739 + │ next: 151d99729d26 -> a2072c652a16 2740 + │ args: jj next 2741 + ○ 220709d07840 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2742 + │ next: 555dbf1a5cd9 -> f51e5ba830a7 2743 + │ args: jj next 2744 + ○ fa7978636887 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2745 + │ next: 39844045939a -> 64547a51e86a 2746 + │ args: jj next 2747 + ○ 81a2a721b4cd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2748 + │ prev: a8704a770ccb -> 000000000000 2749 + │ args: jj prev 2750 + ○ 0638337e8d02 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2751 + │ prev: b15bb146134a -> 64547a51e86a 2752 + │ args: jj prev 2753 + ○ 598662ae7891 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2754 + │ prev: 36c97ec52784 -> f51e5ba830a7 2755 + │ args: jj prev 2756 + ○ 74975067964a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2757 + │ next: 61f560878ce6 -> a2072c652a16 2758 + │ args: jj next 2759 + ○ f9865c28dfbf eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2760 + │ next: 8e95b7cbec8a -> f51e5ba830a7 2761 + │ args: jj next 2762 + ○ 155954502aeb eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2763 + │ next: dc8628ac7fb9 -> 64547a51e86a 2764 + │ args: jj next 2765 + ○ 6cb61099ba02 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2766 + │ prev: c46b7a59af90 -> 000000000000 2767 + │ args: jj prev 2768 + ○ cc6f33eb1752 eli@eli-nixos-xps 4 months ago, lasted 9 milliseconds 2769 + │ prev: a2072c652a16 -> 64547a51e86a 2770 + │ args: jj prev 2771 + ○ 8e1c59c3eec1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2772 + │ next: f51e5ba830a7 -> editing a2072c652a16 2773 + │ args: jj next --edit 2774 + ○ 9e3141f83a60 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2775 + │ next: 64547a51e86a -> editing f51e5ba830a7 2776 + │ args: jj next --edit 2777 + ○ 43bba422810f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2778 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2779 + │ args: jj prev --edit 2780 + ○ 3c5b99c130b4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2781 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2782 + │ args: jj prev --edit 2783 + ○ 8f2218e5bb63 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2784 + │ next: f51e5ba830a7 -> editing a2072c652a16 2785 + │ args: jj next --edit 2786 + ○ 523ea5b27511 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2787 + │ next: 64547a51e86a -> editing f51e5ba830a7 2788 + │ args: jj next --edit 2789 + ○ f958c12f5df4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2790 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2791 + │ args: jj prev --edit 2792 + ○ c2d6aa7af072 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2793 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2794 + │ args: jj prev --edit 2795 + ○ e1e751302fc2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2796 + │ next: f51e5ba830a7 -> editing a2072c652a16 2797 + │ args: jj next --edit 2798 + ○ 4062f3277d8b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2799 + │ next: 64547a51e86a -> editing f51e5ba830a7 2800 + │ args: jj next --edit 2801 + ○ 5741e220973b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2802 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 2803 + │ args: jj prev --edit 2804 + ○ babb19f96584 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2805 + │ prev: a2072c652a16 -> editing f51e5ba830a7 2806 + │ args: jj prev --edit 2807 + ○ f501c83a8861 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2808 + │ next: f51e5ba830a7 -> editing a2072c652a16 2809 + │ args: jj next --edit 2810 + ○ 1262f53eeed9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2811 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 2812 + ○ 4058d89dd0d3 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2813 + │ edit commit a2072c652a1632397e60893d00dce335e68d23db 2814 + ○ cdcdfb3b4076 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2815 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 2816 + ○ 32206ee89d15 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2817 + │ edit commit 64547a51e86a41425f448e5d7cfbf8c0e8d0e850 2818 + ○ f5ad5e5e25e7 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2819 + │ edit commit a2072c652a1632397e60893d00dce335e68d23db 2820 + ○ e33b2d6d28b9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2821 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 2822 + ○ fcbfae064d05 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2823 + │ prev: 2a579b88cc84 -> 64547a51e86a 2824 + │ args: jj prev 2825 + ○ a6688eaa5bfa eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2826 + │ prev: d2af1208fb95 -> f51e5ba830a7 2827 + │ args: jj prev 2828 + ○ 3f91609c5a9b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2829 + │ next: 588904613ee2 -> a2072c652a16 2830 + │ args: jj next 2831 + ○ 6fe7d9668d9a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2832 + │ next: 9a4dd50233bb -> f51e5ba830a7 2833 + │ args: jj next 2834 + ○ 55ad0592346f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2835 + │ next: 9810d90dfee7 -> 64547a51e86a 2836 + │ args: jj next 2837 + ○ aba55fc904ac eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2838 + │ prev: 50b4191124b3 -> 000000000000 2839 + │ args: jj prev 2840 + ○ 6cdd740bbd12 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2841 + │ next: 554e68636db9 -> 64547a51e86a 2842 + │ args: jj next 2843 + ○ 6c88d131b5bd eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2844 + │ prev: 535261cfc413 -> 000000000000 2845 + │ args: jj prev 2846 + ○ 8e0e50968c93 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2847 + │ prev: 823b477c9542 -> 64547a51e86a 2848 + │ args: jj prev 2849 + ○ 27c60b494456 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2850 + │ prev: 435c7c05ab27 -> f51e5ba830a7 2851 + │ args: jj prev 2852 + ○ ae4bd7ac3f86 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2853 + │ next: 3b6e49cd68f5 -> a2072c652a16 2854 + │ args: jj next 2855 + ○ ef00896e0c21 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2856 + │ next: c60e81ca444e -> f51e5ba830a7 2857 + │ args: jj next 2858 + ○ d96977f233d1 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2859 + │ next: e8507bb34355 -> 64547a51e86a 2860 + │ args: jj next 2861 + ○ 7bde8707bb1a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2862 + │ prev: 065946532d85 -> 000000000000 2863 + │ args: jj prev 2864 + ○ 4b8d268b7cbf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2865 + │ prev: 0fe70a6f26e1 -> 64547a51e86a 2866 + │ args: jj prev 2867 + ○ 44d1ab3c4a9f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2868 + │ prev: 83fa2287b4dd -> f51e5ba830a7 2869 + │ args: jj prev 2870 + ○ 8120b0742e20 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2871 + │ next: c5a2fbf8234f -> a2072c652a16 2872 + │ args: jj next 2873 + ○ 2aab219c506a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2874 + │ next: c8a615582bab -> f51e5ba830a7 2875 + │ args: jj next 2876 + ○ 06c63230bc24 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2877 + │ next: c86c2ee7e6ec -> 64547a51e86a 2878 + │ args: jj next 2879 + ○ 1f2aea1ec600 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2880 + │ prev: e8800a74d093 -> 000000000000 2881 + │ args: jj prev 2882 + ○ f1254e69306d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2883 + │ prev: 82b3d3a6987c -> 64547a51e86a 2884 + │ args: jj prev 2885 + ○ 843ff0a62d5a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2886 + │ prev: 1be6b4c9df74 -> f51e5ba830a7 2887 + │ args: jj prev 2888 + ○ 40ccea6d1e1b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2889 + │ next: aa9ce0dae6c8 -> a2072c652a16 2890 + │ args: jj next 2891 + ○ cfbf87cc77c2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2892 + │ next: 33b8af188493 -> f51e5ba830a7 2893 + │ args: jj next 2894 + ○ 65399009038a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2895 + │ next: c1191b2985df -> 64547a51e86a 2896 + │ args: jj next 2897 + ○ 20851e25f4d4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2898 + │ prev: d6b537f80f8f -> 000000000000 2899 + │ args: jj prev 2900 + ○ 846c128d9cde eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2901 + │ prev: a9664e6f8ac3 -> 64547a51e86a 2902 + │ args: jj prev 2903 + ○ 1dd7ced8579c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2904 + │ prev: ef63a727a961 -> f51e5ba830a7 2905 + │ args: jj prev 2906 + ○ f56cc38fe954 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2907 + │ next: e2cbacd9c678 -> a2072c652a16 2908 + │ args: jj next 2909 + ○ 49a42d91d0e3 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2910 + │ next: 0552920ed3df -> f51e5ba830a7 2911 + │ args: jj next 2912 + ○ a25154bf44f2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2913 + │ next: 9d86882ee61c -> 64547a51e86a 2914 + │ args: jj next 2915 + ○ 1dcde0f1715d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2916 + │ prev: 8cc8fd810b07 -> 000000000000 2917 + │ args: jj prev 2918 + ○ e5634c0f1e40 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2919 + │ prev: 6c87d695c928 -> 64547a51e86a 2920 + │ args: jj prev 2921 + ○ 20916278b671 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2922 + │ prev: 58948485c266 -> f51e5ba830a7 2923 + │ args: jj prev 2924 + ○ fb85019b5ac5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2925 + │ next: 447e56e222ff -> a2072c652a16 2926 + │ args: jj next 2927 + ○ 2cef60a92165 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2928 + │ prev: 21c27850c6c5 -> f51e5ba830a7 2929 + │ args: jj prev 2930 + ○ f30c326099f4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2931 + │ commit 916b45f151ea0e1d7fc957aa3b73a36b27c4412b 2932 + │ args: jj commit -m remove-hi2 2933 + ○ 10ab3b46b3a4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2934 + │ snapshot working copy 2935 + │ args: jj commit -m remove-hi2 2936 + ○ 7c77e8d8c00d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2937 + │ commit cc1302d6212a7278c448c19e55a2b6b071a1f528 2938 + │ args: jj commit -m hi2 2939 + ○ 5a28b20206ec eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2940 + │ snapshot working copy 2941 + │ args: jj commit -m hi2 2942 + ○ c34268584efe eli@eli-nixos-xps 4 months ago, lasted 2 milliseconds 2943 + │ commit f0b286a7aca9ad647c597793c629037db53f8a0a 2944 + │ args: jj commit -m hi 2945 + ○ 424b51f2ffff eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2946 + │ snapshot working copy 2947 + │ args: jj commit -m hi 2948 + ○ 130c403d1f1a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 2949 + │ add workspace 'default' 2950 + ○ 9b1addb6dfde eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 2951 + │ initialize repo 2952 + ○ 000000000000 root() 2953 + @ 57d4291a2076 eli@eli-nixos-xps now, lasted 5 milliseconds 2954 + │ snapshot working copy 2955 + │ args: jj op log 2956 + ○ 9205cf08044f eli@eli-nixos-xps 6 seconds ago, lasted 12 milliseconds 2957 + │ snapshot working copy 2958 + │ args: jj op log 2959 + ○ 460252461519 eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 2960 + │ snapshot working copy 2961 + │ args: jj log '\'\'' --color never 2962 + ○ 964ae29c7913 eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 2963 + │ squash commits into a0ce6fa0be8e64263eadcad52b75a00a18a8885b 2964 + │ args: jj squash -u --keep-emptied --from ysqoykszlsnxrywolxlqkoymyvpqlvlk --into ysqoykszlsnxrywolxlqkoymyvpqlvlk- out --color always 2965 + ○ bba8e8d57c47 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 2966 + │ next: 2363ae5ab231 -> editing a0ce6fa0be8e 2967 + │ args: jj next --color always 2968 + ○ 7cb2c2e8a585 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 2969 + │ prev: a0ce6fa0be8e -> editing 2363ae5ab231 2970 + │ args: jj prev --color always 2971 + ○ 335ba3266871 eli@eli-nixos-xps 2 weeks ago, lasted 6 milliseconds 2972 + │ squash commits into b338bc8dc0c21b91b32a44f623c605d71b320ad2 2973 + │ args: jj squash -u --keep-emptied --from qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --into 'qtosxvrzslqvtlqvtqknmwrnkvwwxtxv+' out --color always 2974 + ○ e9e214594767 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 2975 + │ squash commits into 53d1cc4fa2102e8b979b2cb1afc47bc94d6706ce 2976 + │ args: jj squash -u --keep-emptied --from ttnnqpsnpmzyzyknxuyulowqupkuosln --into rp other.txt --color always 2977 + ○ ed1435a56fea eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 2978 + │ squash commits into 0ed6f400a7fe9f18bd6be9191566b843feeb3de8 2979 + │ args: jj squash -u --from quylxlopoutqqnnmvqnkvonqorumqlmr --into tt other.txt --color always 2980 + ○ 66d14904c141 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 2981 + │ squash commits into 67658784491c5587b0540232d5c8568e7144783c 2982 + │ args: jj squash -u --from qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --into qu other.txt --color always 2983 + ○ 5eeb2c173e09 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 2984 + │ snapshot working copy 2985 + │ args: jj log --color always 2986 + ○ 09dc515a1cc8 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 2987 + │ edit commit bf02b5576646f44cf67abc49b67f4b45a42097ef 2988 + │ args: jj edit qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --color always 2989 + ○ a995cd747985 eli@eli-nixos-xps 2 weeks ago, lasted 2 milliseconds 2990 + │ squash commits into 1cfd1811b6dcadb6acd9477bc12819199e8e3a0e 2991 + │ args: jj squash -u --from npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --into qt out --color always 2992 + ○ 56762757775f eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 2993 + │ edit commit 67658784491c5587b0540232d5c8568e7144783c 2994 + │ args: jj edit quylxlopoutqqnnmvqnkvonqorumqlmr --color always 2995 + ○ 29c7a360dccc eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 2996 + │ next: 3bda68c2a942 -> 693b4825353b 2997 + │ args: jj next --color always 2998 + ○ 6be9eb402e9b eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 2999 + │ next: a438c4f17590 -> d91f530fb94d 3000 + │ args: jj next --color always 3001 + ○ 9e6438c6722d eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 3002 + │ next: 5009a23d4bdd -> 1cfd1811b6dc 3003 + │ args: jj next --color always 3004 + ○ 0c8393d14206 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 3005 + │ prev: 906d4922d561 -> 67658784491c 3006 + │ args: jj prev --color always 3007 + ○ 98c9055f93b0 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 3008 + │ new empty commit 3009 + │ args: jj new qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --color always 3010 + ○ 3219ec9a8351 eli@eli-nixos-xps 2 weeks ago, lasted 5 milliseconds 3011 + │ squash commits into 7ef1b7744065cc261eb1026aed0e1407fe422de9 3012 + │ args: jj squash -u --from oyzsrxumlmpqkkstmvxvrpqoxlkyworx --into 'oyzsrxumlmpqkkstmvxvrpqoxlkyworx+' out --color always 3013 + ○ b5e11fc618de eli@eli-nixos-xps 2 weeks ago, lasted 6 milliseconds 3014 + │ squash commits into 3087be21cfbf5ad78bb1f771dd6523ef8d7562b8 3015 + │ args: jj squash -u --from kzywtkmuupzznplpprrykuvlwmkqmrvr --into 'kzywtkmuupzznplpprrykuvlwmkqmrvr+' out --color always 3016 + ○ 01271a3c89ac eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 3017 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 3018 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 3019 + ○ fd0e6b1507f0 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 3020 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 3021 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 3022 + ○ 7dc6666b9f38 eli@eli-nixos-xps 2 weeks ago, lasted 10 milliseconds 3023 + │ new empty commit 3024 + │ args: jj new -r kzywtkmuupzznplpprrykuvlwmkqmrvr --color always 3025 + ○ 248099eb8db7 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 3026 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 3027 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 3028 + ○ 83a60fc53360 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 3029 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 3030 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 3031 + ○ 37e031891dc1 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 3032 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 3033 + │ args: jj edit uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 3034 + ○ 3b6e3661144b eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 3035 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 3036 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 3037 + ○ a2462a97cdf8 eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 3038 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 3039 + │ args: jj edit uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 3040 + ○ 4c95b3be64a6 eli@eli-nixos-xps 2 months ago, lasted 10 milliseconds 3041 + │ new empty commit 3042 + │ args: jj new uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 3043 + ○ e19d8e977392 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 3044 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 3045 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 3046 + ○ c6586be5eae9 eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 3047 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 3048 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 3049 + ○ 9530da5f7cbe eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 3050 + │ edit commit 666abfb74435de95464dc22f07bf32dde888ad98 3051 + │ args: jj edit npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --color always 3052 + ○ 28e31908331a eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 3053 + │ edit commit 3087be21cfbf5ad78bb1f771dd6523ef8d7562b8 3054 + │ args: jj edit oyzsrxumlmpqkkstmvxvrpqoxlkyworx --color always 3055 + ○ fa935a3d0a33 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 3056 + │ edit commit 666abfb74435de95464dc22f07bf32dde888ad98 3057 + │ args: jj edit npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --color always 3058 + ○ 888e3751d383 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 3059 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 3060 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 3061 + ○ 78e092d9b74c eli@eli-nixos-xps 2 months ago, lasted 9 milliseconds 3062 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 3063 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 3064 + ○ 16d6fad68ead eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3065 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 3066 + │ args: jj edit uv --color always 3067 + ○ fc2e02323b8f eli@eli-nixos-xps 3 months ago, lasted 7 milliseconds 3068 + │ squash commits into 2e166a9e68b021c23215e5ff5bf668eec02e3a54 3069 + │ args: jj squash -u --from @ --into uv _build/log --color always 3070 + ○ ad25412d8de5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3071 + │ edit commit 0af36e0760fd3ebbb6499d4acf0bcb6b27ee34d2 3072 + │ args: jj edit w --color always 3073 + ○ 2d5c8cae1b99 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3074 + │ next: 3087be21cfbf -> editing 666abfb74435 3075 + │ args: jj next --edit --color always 3076 + ○ 786a9fa74050 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3077 + │ prev: 666abfb74435 -> editing 3087be21cfbf 3078 + │ args: jj prev --edit --color always 3079 + ○ a8165c930747 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3080 + │ next: 3087be21cfbf -> editing 666abfb74435 3081 + │ args: jj next --edit --color always 3082 + ○ dcdfeee35ec6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3083 + │ next: 712823596dcc -> editing 3087be21cfbf 3084 + │ args: jj next --edit --color always 3085 + ○ 0aa5ae82702f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3086 + │ prev: 3087be21cfbf -> editing 712823596dcc 3087 + │ args: jj prev --edit --color always 3088 + ○ 1b13131d6cc4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3089 + │ prev: 666abfb74435 -> editing 3087be21cfbf 3090 + │ args: jj prev --edit --color always 3091 + ○ 258637f53d41 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3092 + │ prev: 113ab1626900 -> editing 666abfb74435 3093 + │ args: jj prev --edit --color always 3094 + ○ 11912376e984 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3095 + │ prev: 2e166a9e68b0 -> editing 113ab1626900 3096 + │ args: jj prev --edit --color always 3097 + ○ ff890e6e6592 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3098 + │ prev: 0af36e0760fd -> editing 2e166a9e68b0 3099 + │ args: jj prev --edit --color always 3100 + ○ 2b4593a858d2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3101 + │ next: 2e166a9e68b0 -> editing 0af36e0760fd 3102 + │ args: jj next --edit --color always 3103 + ○ d17a1e590a3f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3104 + │ prev: 0af36e0760fd -> editing 2e166a9e68b0 3105 + │ args: jj prev --edit --color always 3106 + ○ f422c0c5c3de eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3107 + │ snapshot working copy 3108 + │ args: jj show -s --color-words --color always 3109 + ○ 7ddb663b74b4 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3110 + │ new empty commit 3111 + │ args: jj new --color always 3112 + ○ 76b7deff03c6 eli@eli-nixos-xps 3 months ago, lasted 4 seconds 3113 + │ squash commits into 83c9fe8f3609bc4f130878c3ff2ef14e9d3bfdcf 3114 + │ args: jj squash -i --into nu 3115 + ○ 03329123583b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3116 + │ edit commit db6379e864d55c794c0b4b5d13d4e0cc5dfa0739 3117 + │ args: jj edit w --color always 3118 + ○ 5f0093686ca2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3119 + │ describe commit 2b39b40aae4f99d771d091407d90ec9649e080a3 3120 + │ args: jj describe -m bup --color always 3121 + ○ 20be04cfc0e9 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 3122 + │ new empty commit 3123 + │ args: jj new --color always 3124 + ○ d3b6d5e3d064 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3125 + │ prev: d01037ae2e80 -> editing 666abfb74435 3126 + │ args: jj prev --edit --color always 3127 + ○ 349e673347fb eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3128 + │ new empty commit 3129 + │ args: jj new --color always 3130 + ○ 2bfb4079736b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3131 + │ next: 3087be21cfbf -> editing 666abfb74435 3132 + │ args: jj next --edit --color always 3133 + ○ 0c11364097e3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3134 + │ prev: 666abfb74435 -> editing 3087be21cfbf 3135 + │ args: jj prev --color always 3136 + ○ 3e7b4b0cc939 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 3137 + │ prev: 113ab1626900 -> editing 666abfb74435 3138 + │ args: jj prev --edit --color always 3139 + ○ 7d4c36d94b56 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3140 + │ prev: db6379e864d5 -> editing 113ab1626900 3141 + │ args: jj prev --edit 3142 + ○ fa424cf68eeb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3143 + │ next: 113ab1626900 -> editing db6379e864d5 3144 + │ args: jj next --edit 3145 + ○ 79b8e2bc30ef eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 3146 + │ next: 666abfb74435 -> editing 113ab1626900 3147 + │ args: jj next --edit 3148 + ○ 1587355b6c5f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3149 + │ next: 3087be21cfbf -> editing 666abfb74435 3150 + │ args: jj next --edit 3151 + ○ c278f0fa21bb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3152 + │ next: 712823596dcc -> editing 3087be21cfbf 3153 + │ args: jj next --edit 3154 + ○ 8f753eb3a9ac eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 3155 + │ prev: 3087be21cfbf -> editing 712823596dcc 3156 + │ args: jj prev --edit --color always 3157 + ○ 15bc149a7d8c eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 3158 + │ prev: 666abfb74435 -> editing 3087be21cfbf 3159 + │ args: jj prev --edit --color always 3160 + ○ e30069685cf9 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 3161 + │ prev: 113ab1626900 -> editing 666abfb74435 3162 + │ args: jj prev --edit --color always 3163 + ○ 7b1edde5af99 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3164 + │ prev: db6379e864d5 -> editing 113ab1626900 3165 + │ args: jj prev --edit --color always 3166 + ○ 45705d925f9a eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 3167 + │ next: 113ab1626900 -> editing db6379e864d5 3168 + │ args: jj next --edit --color always 3169 + ○ a8db560c9d0c eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3170 + │ snapshot working copy 3171 + │ args: jj show -s --color-words --color always 3172 + ○ 429820142033 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3173 + │ create branch bbbbb pointing to commit 9898af24583487a77e38b1d89a7ccbc8cb804ce6 3174 + │ args: jj branch create bbbbb --color always 3175 + ○ 5ba2dfbe66ce eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3176 + │ next: 666abfb74435 -> editing 9898af245834 3177 + │ args: jj next --edit --color always 3178 + ○ b7b58d162e03 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3179 + │ next: 3087be21cfbf -> editing 666abfb74435 3180 + │ args: jj next --edit --color always 3181 + ○ 275580757e74 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3182 + │ next: 712823596dcc -> editing 3087be21cfbf 3183 + │ args: jj next --edit --color always 3184 + ○ 6c6e1dc6b352 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3185 + │ next: d91f530fb94d -> editing 712823596dcc 3186 + │ args: jj next --edit --color always 3187 + ○ 57ed5b2072ff eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3188 + │ next: 1cfd1811b6dc -> editing d91f530fb94d 3189 + │ args: jj next --edit --color always 3190 + ○ b57f64c76216 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3191 + │ next: 67658784491c -> editing 1cfd1811b6dc 3192 + │ args: jj next --edit --color always 3193 + ○ 8a8dea05f3d2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3194 + │ next: 0ed6f400a7fe -> editing 67658784491c 3195 + │ args: jj next --edit --color always 3196 + ○ 1994506c5e3a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3197 + │ prev: 67658784491c -> editing 0ed6f400a7fe 3198 + │ args: jj prev --edit --color always 3199 + ○ 9bf9f1421a3b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3200 + │ prev: 1cfd1811b6dc -> editing 67658784491c 3201 + │ args: jj prev --edit --color always 3202 + ○ e0bb9d322ba2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3203 + │ create branches this, is, a, branch pointing to commit 1cfd1811b6dcadb6acd9477bc12819199e8e3a0e 3204 + │ args: jj branch create this is a branch --color always 3205 + ○ 252138ae1cd8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3206 + │ next: 67658784491c -> editing 1cfd1811b6dc 3207 + │ args: jj next --edit --color always 3208 + ○ e99e164440b9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3209 + │ next: 0ed6f400a7fe -> editing 67658784491c 3210 + │ args: jj next --edit --color always 3211 + ○ 25bd3735f935 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3212 + │ next: 53d1cc4fa210 -> editing 0ed6f400a7fe 3213 + │ args: jj next --edit --color always 3214 + ○ 559ec5226325 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3215 + │ next: 3c4573dda23c -> editing 53d1cc4fa210 3216 + │ args: jj next --edit --color always 3217 + ○ 2ab188cdcdc0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3218 + │ next: 2374647001dd -> editing 3c4573dda23c 3219 + │ args: jj next --edit --color always 3220 + ○ efe90e27f405 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3221 + │ create branches hi, there, new pointing to commit 2374647001dd1762b4e0f8d0db8be208bb360cda 3222 + │ args: jj branch create hi there new --color always 3223 + ○ 4bc60dab857e eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3224 + │ create branch hi there new pointing to commit 2374647001dd1762b4e0f8d0db8be208bb360cda 3225 + │ args: jj branch create 'hi there new' --color always 3226 + ○ 0414a317e206 eli@eli-nixos-xps 3 months ago, lasted 20 milliseconds 3227 + │ parallelize 2 commits 3228 + │ args: jj parallelize mz u 3229 + ○ a305f317ec92 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3230 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 3231 + │ args: jj next --edit --color always 3232 + ○ 4fedbeb42e62 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3233 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 3234 + │ args: jj next --edit --color always 3235 + ○ 15667da8f18b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3236 + │ next: 3eae36a2605b -> editing a32d34abf5b2 3237 + │ args: jj next --edit --color always 3238 + ○ 2f268bb632ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3239 + │ next: d648d9dc91ca -> editing 3eae36a2605b 3240 + │ args: jj next --edit --color always 3241 + ○ e940c6193eaf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3242 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 3243 + │ args: jj prev --edit --color always 3244 + ○ 84845cc4b86f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3245 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 3246 + │ args: jj prev --edit --color always 3247 + ○ bc45b5036023 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3248 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 3249 + │ args: jj prev --edit --color always 3250 + ○ bb60f151dd46 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3251 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 3252 + │ args: jj prev --edit --color always 3253 + ○ 1ad26ac4b641 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3254 + │ prev: e817aa28318f -> editing d24fcbff9fa8 3255 + │ args: jj prev --edit --color always 3256 + ○ 4a0ce54a4475 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3257 + │ prev: bf3bd93157fe -> editing e817aa28318f 3258 + │ args: jj prev --edit --color always 3259 + ○ 4a8940cbcec2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3260 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 3261 + │ args: jj prev --edit --color always 3262 + ○ 3ec11bf5422a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3263 + │ next: bf3bd93157fe -> editing cf157ef807a2 3264 + │ args: jj next --edit --color always 3265 + ○ ec63814f5707 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3266 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 3267 + │ args: jj prev --edit --color always 3268 + ○ faddc25ac42b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3269 + │ prev: 156f77d97c30 -> editing cf157ef807a2 3270 + │ args: jj prev --edit --color always 3271 + ○ 31e587b2be70 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3272 + │ next: cf157ef807a2 -> editing 156f77d97c30 3273 + │ args: jj next --edit --color always 3274 + ○ 9d6d4ab6cc14 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3275 + │ prev: 156f77d97c30 -> editing cf157ef807a2 3276 + │ args: jj prev --edit --color always 3277 + ○ f6b9368a4746 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3278 + │ next: cf157ef807a2 -> editing 156f77d97c30 3279 + │ args: jj next --edit --color always 3280 + ○ 563fd20a458b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3281 + │ prev: 156f77d97c30 -> editing cf157ef807a2 3282 + │ args: jj prev --edit --color always 3283 + ○ 1adb6b2f0988 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3284 + │ next: cf157ef807a2 -> editing 156f77d97c30 3285 + │ args: jj next --edit --color always 3286 + ○ 816a49fa1a7f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3287 + │ prev: 156f77d97c30 -> editing cf157ef807a2 3288 + │ args: jj prev --edit --color always 3289 + ○ a22b90a04709 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3290 + │ prev: b774cec816ba -> editing 156f77d97c30 3291 + │ args: jj prev --edit --color always 3292 + ○ 57d7a57bf61b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3293 + │ prev: a39ba96d6e4a -> editing b774cec816ba 3294 + │ args: jj prev --edit --color always 3295 + ○ c799390764ff eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3296 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 3297 + │ args: jj prev --edit --color always 3298 + ○ 43d5156255fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3299 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 3300 + │ args: jj prev --edit --color always 3301 + ○ 08b198fcf701 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3302 + │ next: 48d266b0f74f -> editing cc8d0eb60492 3303 + │ args: jj next --edit --color always 3304 + ○ 4d554590ef6a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3305 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 3306 + │ args: jj next --edit --color always 3307 + ○ d65b71043139 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3308 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 3309 + │ args: jj prev --edit --color always 3310 + ○ 2d6b4a603251 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3311 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 3312 + │ args: jj prev --edit --color always 3313 + ○ 9f57bcc4b3db eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3314 + │ prev: 950186d3e70f -> editing cc8d0eb60492 3315 + │ args: jj prev --edit --color always 3316 + ○ 08c379b74531 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3317 + │ prev: 39cdf2fc7a87 -> editing 950186d3e70f 3318 + │ args: jj prev --edit --color always 3319 + ○ d396260f8c53 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3320 + │ prev: 80a38dbcd596 -> editing 39cdf2fc7a87 3321 + │ args: jj prev --edit --color always 3322 + ○ fd71c4dd2d7b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3323 + │ snapshot working copy 3324 + │ args: jj show -s --color-words --color always 3325 + ○ e632f97d2fe8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3326 + │ snapshot working copy 3327 + │ args: jj show -s --color-words --color always 3328 + ○ 6f13cdbeed87 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3329 + │ next: 39cdf2fc7a87 -> editing fd28c730f4d3 3330 + │ args: jj next 3331 + ○ b535d7aa56f1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3332 + ├─╮ resolve concurrent operations 3333 + │ │ args: jj workspace update-stale 3334 + ○ │ 9450c37c8d8b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3335 + │ │ prev: 00f79c0a5121 -> editing 39cdf2fc7a87 3336 + │ │ args: jj prev --edit --ignore-working-copy 3337 + │ ○ 4f0292379492 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3338 + ├─╯ snapshot working copy 3339 + │ args: jj workspace update-stale 3340 + ○ a5a9b2acc7f1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3341 + │ prev: 57e7b64925e9 -> editing 00f79c0a5121 3342 + │ args: jj prev --edit --ignore-working-copy 3343 + ○ bb620e294aa3 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3344 + │ next: f32811cc6777 -> 00f79c0a5121 3345 + │ args: jj next 3346 + ○ ee63ce2ef6de eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3347 + │ next: ffca284d7e01 -> 39cdf2fc7a87 3348 + │ args: jj next 3349 + ○ 14ae25d705cc eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3350 + │ prev: 00f79c0a5121 -> 950186d3e70f 3351 + │ args: jj prev 3352 + ○ ec9b85fc9bf6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3353 + │ next: 39cdf2fc7a87 -> editing 00f79c0a5121 3354 + │ args: jj next 3355 + ○ 0ecc7d7b6eff eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3356 + │ describe commit cbdf80f7ada85a7da05ab201579988efc06a0c3b 3357 + │ args: jj desc -m prev 3358 + ○ 76c126ec0e56 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3359 + │ prev: d0cf97fd3caf -> editing cbdf80f7ada8 3360 + │ args: jj prev --edit 3361 + ○ 4502b37c14d6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3362 + │ prev: a0ab6bfb0a4e -> editing d0cf97fd3caf 3363 + │ args: jj prev --edit 3364 + ○ 2bbc4cea9b9f eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3365 + │ next: 6c2f0428c83c -> d0cf97fd3caf 3366 + │ args: jj next 3367 + ○ a5bc30a9ee58 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3368 + │ next: 04e66f53c455 -> cbdf80f7ada8 3369 + │ args: jj next 3370 + ○ 022a9fc105fa eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3371 + │ prev: d0cf97fd3caf -> 950186d3e70f 3372 + │ args: jj prev 3373 + ○ f92f8686a067 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3374 + │ next: cbdf80f7ada8 -> editing d0cf97fd3caf 3375 + │ args: jj next --edit 3376 + ○ fd684cdc80dd eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 3377 + │ snapshot working copy 3378 + │ args: jj log 3379 + ○ b71f4f2ce3fd eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3380 + │ prev: 538360f87be6 -> editing 2739bea98abf 3381 + │ args: jj prev --edit 3382 + ○ 26f2982f8ff4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3383 + │ next: 2739bea98abf -> editing 538360f87be6 3384 + │ args: jj next 3385 + ○ c3a21beee0e2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3386 + │ prev: 538360f87be6 -> editing 2739bea98abf 3387 + │ args: jj prev --edit 3388 + ○ 54e2ac2eef1d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3389 + │ next: 2739bea98abf -> editing 538360f87be6 3390 + │ args: jj next --edit 3391 + ○ 849604ee1706 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3392 + │ prev: c8595354cb7a -> editing 2739bea98abf 3393 + │ args: jj prev --edit 3394 + ○ 48ddf5b28eb2 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3395 + │ next: f70c33fb46e9 -> 2739bea98abf 3396 + │ args: jj next 3397 + ○ 3613dac0c79d eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3398 + │ prev: 538360f87be6 -> 950186d3e70f 3399 + │ args: jj prev 3400 + ○ ae8799cecf51 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3401 + │ snapshot working copy 3402 + │ args: jj log 3403 + ○ 43a812c24ca6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3404 + │ next: 2739bea98abf -> editing e629aa0beb6f 3405 + │ args: jj next --edit --color always 3406 + ○ e9eb4884d047 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3407 + │ next: 950186d3e70f -> editing 2739bea98abf 3408 + │ args: jj next --edit --color always 3409 + ○ a1c3280321ff eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3410 + │ next: cc8d0eb60492 -> editing 950186d3e70f 3411 + │ args: jj next --edit --color always 3412 + ○ 9e4d57b19352 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3413 + │ next: 48d266b0f74f -> editing cc8d0eb60492 3414 + │ args: jj next --edit --color always 3415 + ○ 1f8e3257b5e8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3416 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 3417 + │ args: jj next --edit --color always 3418 + ○ ef285e8c067b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3419 + │ next: b774cec816ba -> editing a39ba96d6e4a 3420 + │ args: jj next --edit --color always 3421 + ○ 5e776f76b494 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3422 + │ next: 156f77d97c30 -> editing b774cec816ba 3423 + │ args: jj next --edit --color always 3424 + ○ c02974809780 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3425 + │ next: cf157ef807a2 -> editing 156f77d97c30 3426 + │ args: jj next --edit --color always 3427 + ○ 6aeefa8a4593 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3428 + │ next: bf3bd93157fe -> editing cf157ef807a2 3429 + │ args: jj next --edit --color always 3430 + ○ c78dee0f42ed eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3431 + │ next: e817aa28318f -> editing bf3bd93157fe 3432 + │ args: jj next --edit --color always 3433 + ○ 00ce5e4e97e9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3434 + │ next: d24fcbff9fa8 -> editing e817aa28318f 3435 + │ args: jj next --edit --color always 3436 + ○ a0e5c8fb9c9c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3437 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 3438 + │ args: jj next --edit --color always 3439 + ○ 0ce3eca5b8a2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3440 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 3441 + │ args: jj next --edit --color always 3442 + ○ 16680f6f40a0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3443 + │ next: 3eae36a2605b -> editing a32d34abf5b2 3444 + │ args: jj next --edit --color always 3445 + ○ 04dcf237dd58 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3446 + │ next: d648d9dc91ca -> editing 3eae36a2605b 3447 + │ args: jj next --edit --color always 3448 + ○ 86d9781ce752 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3449 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 3450 + │ args: jj next --edit --color always 3451 + ○ e6ad5d901058 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3452 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 3453 + │ args: jj next --edit --color always 3454 + ○ 4b4c46cc97a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3455 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 3456 + │ args: jj next --edit --color always 3457 + ○ af6616a13a41 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3458 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 3459 + │ args: jj next --edit --color always 3460 + ○ 15c89fa2923d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3461 + │ next: 584796aea9d8 -> editing 8e967a8ded42 3462 + │ args: jj next --edit --color always 3463 + ○ 71245d17ae92 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3464 + │ next: 812a118be9e4 -> editing 584796aea9d8 3465 + │ args: jj next --edit --color always 3466 + ○ d8d83a770ba0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3467 + │ prev: 584796aea9d8 -> editing 812a118be9e4 3468 + │ args: jj prev --edit --color always 3469 + ○ a7dfe070528d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3470 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 3471 + │ args: jj prev --edit --color always 3472 + ○ 8f6203d67481 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3473 + │ next: 584796aea9d8 -> editing 8e967a8ded42 3474 + │ args: jj next --edit --color always 3475 + ○ 3844c0accb43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3476 + │ next: 812a118be9e4 -> editing 584796aea9d8 3477 + │ args: jj next --edit --color always 3478 + ○ bf03f81bd215 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3479 + │ next: 529712756e2c -> editing 812a118be9e4 3480 + │ args: jj next --edit --color always 3481 + ○ f71210c3a9ac eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3482 + │ next: c3e259d4c40f -> editing 529712756e2c 3483 + │ args: jj next --edit --color always 3484 + ○ ca30c30cdaac eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3485 + │ prev: 529712756e2c -> editing c3e259d4c40f 3486 + │ args: jj prev --edit --color always 3487 + ○ 36afe4c90738 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3488 + │ prev: 812a118be9e4 -> editing 529712756e2c 3489 + │ args: jj prev --edit --color always 3490 + ○ 04b8a11951b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3491 + │ prev: 584796aea9d8 -> editing 812a118be9e4 3492 + │ args: jj prev --edit --color always 3493 + ○ c9a0e9352945 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3494 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 3495 + │ args: jj prev --edit --color always 3496 + ○ 33e4cf9a8c5a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3497 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 3498 + │ args: jj prev --edit --color always 3499 + ○ 0ace05f77c15 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3500 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 3501 + │ args: jj prev --edit --color always 3502 + ○ 0dd120209c78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3503 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 3504 + │ args: jj prev --edit --color always 3505 + ○ 4ff2838fd673 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3506 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 3507 + │ args: jj prev --edit --color always 3508 + ○ c446d64f6e57 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3509 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 3510 + │ args: jj prev --edit --color always 3511 + ○ fe51570365d3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3512 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 3513 + │ args: jj prev --edit --color always 3514 + ○ ffdb38aeb725 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3515 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 3516 + │ args: jj prev --edit --color always 3517 + ○ 87e7808d6086 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3518 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 3519 + │ args: jj prev --edit --color always 3520 + ○ 8b723248c32f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3521 + │ prev: e817aa28318f -> editing d24fcbff9fa8 3522 + │ args: jj prev --edit --color always 3523 + ○ f4900f770668 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3524 + │ prev: bf3bd93157fe -> editing e817aa28318f 3525 + │ args: jj prev --edit --color always 3526 + ○ ca8a04a2670b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3527 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 3528 + │ args: jj prev --edit --color always 3529 + ○ c7cdbc94d17a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3530 + │ prev: 156f77d97c30 -> editing cf157ef807a2 3531 + │ args: jj prev --edit --color always 3532 + ○ 8708472e53b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3533 + │ prev: b774cec816ba -> editing 156f77d97c30 3534 + │ args: jj prev --edit --color always 3535 + ○ 230beee56654 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3536 + │ prev: a39ba96d6e4a -> editing b774cec816ba 3537 + │ args: jj prev --edit --color always 3538 + ○ 3916a82697dc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3539 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 3540 + │ args: jj prev --edit --color always 3541 + ○ 5b16958deed0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3542 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 3543 + │ args: jj prev --edit --color always 3544 + ○ 30b6e795010a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3545 + │ prev: 950186d3e70f -> editing cc8d0eb60492 3546 + │ args: jj prev --edit --color always 3547 + ○ 7783bd02df79 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3548 + │ prev: 2739bea98abf -> editing 950186d3e70f 3549 + │ args: jj prev --edit --color always 3550 + ○ 5019447bafc7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3551 + │ prev: e629aa0beb6f -> editing 2739bea98abf 3552 + │ args: jj prev --edit --color always 3553 + ○ ab7a5d65a236 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3554 + │ next: 2739bea98abf -> editing e629aa0beb6f 3555 + │ args: jj next --edit --color always 3556 + ○ 0203c0ab8c71 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3557 + │ next: 950186d3e70f -> editing 2739bea98abf 3558 + │ args: jj next --edit --color always 3559 + ○ 1791bd99ee86 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3560 + │ next: cc8d0eb60492 -> editing 950186d3e70f 3561 + │ args: jj next --edit --color always 3562 + ○ 4c660456add4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3563 + │ next: 48d266b0f74f -> editing cc8d0eb60492 3564 + │ args: jj next --edit --color always 3565 + ○ 2dae0304e4e6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3566 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 3567 + │ args: jj next --edit --color always 3568 + ○ 9cb76a44bf2c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3569 + │ next: b774cec816ba -> editing a39ba96d6e4a 3570 + │ args: jj next --edit --color always 3571 + ○ 9564a95365d6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3572 + │ next: 156f77d97c30 -> editing b774cec816ba 3573 + │ args: jj next --edit --color always 3574 + ○ aed3a70e08ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3575 + │ next: cf157ef807a2 -> editing 156f77d97c30 3576 + │ args: jj next --edit --color always 3577 + ○ 05f03e647c49 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3578 + │ next: bf3bd93157fe -> editing cf157ef807a2 3579 + │ args: jj next --edit --color always 3580 + ○ fb2b1c611179 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3581 + │ next: e817aa28318f -> editing bf3bd93157fe 3582 + │ args: jj next --edit --color always 3583 + ○ 898993d0d61c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3584 + │ next: d24fcbff9fa8 -> editing e817aa28318f 3585 + │ args: jj next --edit --color always 3586 + ○ 68977ec2a373 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3587 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 3588 + │ args: jj next --edit --color always 3589 + ○ f47a3c49f528 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3590 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 3591 + │ args: jj next --edit --color always 3592 + ○ 55fe64da60b9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3593 + │ next: 3eae36a2605b -> editing a32d34abf5b2 3594 + │ args: jj next --edit --color always 3595 + ○ 22b43d1c0a10 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3596 + │ next: d648d9dc91ca -> editing 3eae36a2605b 3597 + │ args: jj next --edit --color always 3598 + ○ 7f4d84bc88fc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3599 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 3600 + │ args: jj next --edit --color always 3601 + ○ 40c6fa4eb49c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3602 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 3603 + │ args: jj next --edit --color always 3604 + ○ 44b0fe87fa8a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3605 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 3606 + │ args: jj next --edit --color always 3607 + ○ acd75bfd909c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3608 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 3609 + │ args: jj next --edit --color always 3610 + ○ f1e37ba8caa4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3611 + │ next: 584796aea9d8 -> editing 8e967a8ded42 3612 + │ args: jj next --edit --color always 3613 + ○ 62442200497c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3614 + │ next: 812a118be9e4 -> editing 584796aea9d8 3615 + │ args: jj next --edit --color always 3616 + ○ 0ae375aea5ad eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3617 + │ next: 529712756e2c -> editing 812a118be9e4 3618 + │ args: jj next --edit --color always 3619 + ○ 41b60c427523 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3620 + │ next: c3e259d4c40f -> editing 529712756e2c 3621 + │ args: jj next --edit --color always 3622 + ○ f0e9c43dea62 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3623 + │ prev: 529712756e2c -> editing c3e259d4c40f 3624 + │ args: jj prev --edit --color always 3625 + ○ 7ee17f8aa9ab eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3626 + │ prev: 812a118be9e4 -> editing 529712756e2c 3627 + │ args: jj prev --edit --color always 3628 + ○ 1d28f629181c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3629 + │ prev: 584796aea9d8 -> editing 812a118be9e4 3630 + │ args: jj prev --edit --color always 3631 + ○ c3d50c44867f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3632 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 3633 + │ args: jj prev --edit --color always 3634 + ○ 7faf8be2d4f0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3635 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 3636 + │ args: jj prev --edit --color always 3637 + ○ 753c326c66da eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3638 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 3639 + │ args: jj prev --edit --color always 3640 + ○ 5a6e66a29a56 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3641 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 3642 + │ args: jj prev --edit --color always 3643 + ○ 43916dfb6ec8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3644 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 3645 + │ args: jj prev --edit --color always 3646 + ○ 829c8aa7e9f5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3647 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 3648 + │ args: jj prev --edit --color always 3649 + ○ 17daf9b8aa80 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3650 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 3651 + │ args: jj prev --edit --color always 3652 + ○ e177f2ace6e5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3653 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 3654 + │ args: jj prev --edit --color always 3655 + ○ 66cc060576bd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3656 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 3657 + │ args: jj next --edit --color always 3658 + ○ 0feedee2fcaf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3659 + │ next: 3eae36a2605b -> editing a32d34abf5b2 3660 + │ args: jj next --edit --color always 3661 + ○ 624e61c02e78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3662 + │ next: d648d9dc91ca -> editing 3eae36a2605b 3663 + │ args: jj next --edit --color always 3664 + ○ ba1de8899c87 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3665 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 3666 + │ args: jj next --edit --color always 3667 + ○ 9f10a8550e4f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3668 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 3669 + │ args: jj next --edit --color always 3670 + ○ 64b510079b24 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3671 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 3672 + │ args: jj next --edit --color always 3673 + ○ 25f9533d41a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3674 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 3675 + │ args: jj next --edit --color always 3676 + ○ 3db7940af9ab eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3677 + │ next: 584796aea9d8 -> editing 8e967a8ded42 3678 + │ args: jj next --edit --color always 3679 + ○ 2563dcbb9d63 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3680 + │ next: 812a118be9e4 -> editing 584796aea9d8 3681 + │ args: jj next --edit --color always 3682 + ○ c05559d8b93e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3683 + │ next: 529712756e2c -> editing 812a118be9e4 3684 + │ args: jj next --edit --color always 3685 + ○ 723744e1a91f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3686 + │ next: c3e259d4c40f -> editing 529712756e2c 3687 + │ args: jj next --edit --color always 3688 + ○ c8092d5af20d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3689 + │ prev: 529712756e2c -> editing c3e259d4c40f 3690 + │ args: jj prev --edit --color always 3691 + ○ a05ecdb3e0eb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3692 + │ prev: 812a118be9e4 -> editing 529712756e2c 3693 + │ args: jj prev --edit --color always 3694 + ○ 81b2a0acf74d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3695 + │ prev: 584796aea9d8 -> editing 812a118be9e4 3696 + │ args: jj prev --edit --color always 3697 + ○ 4dbb928a3f3d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3698 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 3699 + │ args: jj prev --edit --color always 3700 + ○ 7696f68b745b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3701 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 3702 + │ args: jj prev --edit --color always 3703 + ○ f0f976791366 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3704 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 3705 + │ args: jj prev --edit --color always 3706 + ○ a0f1a6265e62 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3707 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 3708 + │ args: jj prev --edit --color always 3709 + ○ 663a2010711f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3710 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 3711 + │ args: jj prev --edit --color always 3712 + ○ e1cb99ed5cb1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3713 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 3714 + │ args: jj prev --edit --color always 3715 + ○ 6f0e51018998 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3716 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 3717 + │ args: jj prev --edit --color always 3718 + ○ f964c18f4250 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3719 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 3720 + │ args: jj prev --edit --color always 3721 + ○ abc6c2d67d6c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3722 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 3723 + │ args: jj prev --edit --color always 3724 + ○ 955e6799d49a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3725 + │ prev: e817aa28318f -> editing d24fcbff9fa8 3726 + │ args: jj prev --edit --color always 3727 + ○ 46e4a167b6e9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3728 + │ prev: bf3bd93157fe -> editing e817aa28318f 3729 + │ args: jj prev --edit --color always 3730 + ○ de91ff44ef59 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3731 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 3732 + │ args: jj prev --edit --color always 3733 + ○ 440e4652352c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3734 + │ prev: 156f77d97c30 -> editing cf157ef807a2 3735 + │ args: jj prev --edit --color always 3736 + ○ 4bae8a17b53b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3737 + │ prev: b774cec816ba -> editing 156f77d97c30 3738 + │ args: jj prev --edit --color always 3739 + ○ a4d557f8ad7b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3740 + │ prev: a39ba96d6e4a -> editing b774cec816ba 3741 + │ args: jj prev --edit --color always 3742 + ○ c23d208589d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3743 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 3744 + │ args: jj prev --edit --color always 3745 + ○ e95297289186 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3746 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 3747 + │ args: jj prev --edit --color always 3748 + ○ 2cbdbc53d7b1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3749 + │ prev: 950186d3e70f -> editing cc8d0eb60492 3750 + │ args: jj prev --edit --color always 3751 + ○ a4573bf98c3f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3752 + │ prev: 2739bea98abf -> editing 950186d3e70f 3753 + │ args: jj prev --edit --color always 3754 + ○ 0e9f7a179972 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3755 + │ prev: e629aa0beb6f -> editing 2739bea98abf 3756 + │ args: jj prev --edit --color always 3757 + ○ 37a66ae3ebc9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3758 + │ next: 2739bea98abf -> editing e629aa0beb6f 3759 + │ args: jj next --edit --color always 3760 + ○ 222cdba01168 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3761 + │ next: 950186d3e70f -> editing 2739bea98abf 3762 + │ args: jj next --edit --color always 3763 + ○ 2372f98031dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3764 + │ next: cc8d0eb60492 -> editing 950186d3e70f 3765 + │ args: jj next --edit --color always 3766 + ○ e1f40502f278 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3767 + │ next: 48d266b0f74f -> editing cc8d0eb60492 3768 + │ args: jj next --edit --color always 3769 + ○ 1fc3c88ab08f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3770 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 3771 + │ args: jj next --edit --color always 3772 + ○ d8586c9fa878 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3773 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 3774 + │ args: jj prev --edit --color always 3775 + ○ 18269bea45c4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3776 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 3777 + │ args: jj prev --edit --color always 3778 + ○ 28620f402dbb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3779 + │ next: 48d266b0f74f -> editing cc8d0eb60492 3780 + │ args: jj next --edit --color always 3781 + ○ 65129eeb16ef eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3782 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 3783 + │ args: jj prev --edit --color always 3784 + ○ c7e532a0762d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3785 + │ next: 48d266b0f74f -> editing cc8d0eb60492 3786 + │ args: jj next --edit --color always 3787 + ○ f815d912f7e4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3788 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 3789 + │ args: jj prev --edit --color always 3790 + ○ 9a840cbaa8fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3791 + │ next: 48d266b0f74f -> editing cc8d0eb60492 3792 + │ args: jj next --edit --color always 3793 + ○ 686661f7ccd9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3794 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 3795 + │ args: jj next --edit --color always 3796 + ○ 8c5b7e4c1225 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3797 + │ next: b774cec816ba -> editing a39ba96d6e4a 3798 + │ args: jj next --edit --color always 3799 + ○ 3b513b12ee24 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3800 + │ next: 156f77d97c30 -> editing b774cec816ba 3801 + │ args: jj next --edit --color always 3802 + ○ 2b08f91111f7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3803 + │ prev: b774cec816ba -> editing 156f77d97c30 3804 + │ args: jj prev --edit --color always 3805 + ○ a109e43e0d0a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3806 + │ prev: a39ba96d6e4a -> editing b774cec816ba 3807 + │ args: jj prev --edit --color always 3808 + ○ 77fa8eb253ec eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3809 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 3810 + │ args: jj prev --edit --color always 3811 + ○ f6b2875d7148 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3812 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 3813 + │ args: jj prev --edit --color always 3814 + ○ 87199d2611a2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3815 + │ prev: 950186d3e70f -> editing cc8d0eb60492 3816 + │ args: jj prev --edit --color always 3817 + ○ 061aebfb8410 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3818 + │ prev: 2739bea98abf -> editing 950186d3e70f 3819 + │ args: jj prev --edit --color always 3820 + ○ f89e07306ef3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3821 + │ prev: e629aa0beb6f -> editing 2739bea98abf 3822 + │ args: jj prev --edit --color always 3823 + ○ c099446d186c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3824 + │ next: 2739bea98abf -> editing e629aa0beb6f 3825 + │ args: jj next --edit --color always 3826 + ○ e8ea71c5b2a9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3827 + │ prev: e629aa0beb6f -> editing 2739bea98abf 3828 + │ args: jj prev --edit --color always 3829 + ○ d4c1200ba27d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3830 + │ next: 2739bea98abf -> editing e629aa0beb6f 3831 + │ args: jj next --edit --color always 3832 + ○ a197a899f0fe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3833 + │ next: 950186d3e70f -> editing 2739bea98abf 3834 + │ args: jj next --edit --color always 3835 + ○ cc4ee0244c0e eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3836 + │ next: cc8d0eb60492 -> editing 950186d3e70f 3837 + │ args: jj next --edit --color always 3838 + ○ b4440477e838 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3839 + │ prev: 950186d3e70f -> editing cc8d0eb60492 3840 + │ args: jj prev --edit --color always 3841 + ○ fe1d4533a8b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3842 + │ prev: 2739bea98abf -> editing 950186d3e70f 3843 + │ args: jj prev --edit --ignore-working-copy 3844 + ○ 28dfbd17f098 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3845 + │ prev: e629aa0beb6f -> editing 2739bea98abf 3846 + │ args: jj prev --edit --ignore-working-copy 3847 + ○ 75fc418ceb44 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3848 + │ rename branch hi to branch bye 3849 + │ args: jj branch rename hi bye --color always 3850 + ○ 219d7975fe9b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3851 + │ create branch hi pointing to commit e629aa0beb6fc1f4b6aba3944776b17d6c7f0945 3852 + │ args: jj branch create hi --color always 3853 + ○ 7286142a6136 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3854 + │ prev: a78888a34918 -> editing e629aa0beb6f 3855 + │ args: jj prev --edit --color always 3856 + ○ 6bb7618574ff eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3857 + │ squash commits into edd7d0839b388ee8175f1bfe87923de06162f3e0 3858 + │ args: jj squash --quiet -m 'taroisetoariest 3859 + 3860 + │ oarisetnaorienst 3861 + 3862 + │ ' --color always 3863 + ○ 6cdad9359f5b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3864 + │ prev: 9e664ead9fc9 -> editing 2d3e7612a1b9 3865 + │ args: jj prev --edit --color always 3866 + ○ 36cb49188518 eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 3867 + │ commit 4f545f50a901b12c339db1a9e6efa1318a4415f7 3868 + │ args: jj commit -m oarisetnaorienst --color always 3869 + ○ d8a5b5a22be6 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 3870 + │ commit 819c8ef8b6e075b1b670ad59bfa58bd0910eead7 3871 + │ args: jj commit -m taroisetoariest --color always 3872 + ○ f552d15d3bc4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3873 + │ commit a6153441568f9aa4c42d37f0c538933e93ceee47 3874 + │ args: jj commit -m hi --color always 3875 + ○ d486a5e71797 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3876 + │ commit 05343f4fbe95ef1f3c912c3a7bb60e5221f09d5a 3877 + │ args: jj commit -m hi --color always 3878 + ○ 56233d6a5071 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3879 + │ prev: 1eeecc488c6a -> editing 05343f4fbe95 3880 + │ args: jj prev --edit --color always 3881 + ○ 99f901cadf87 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3882 + │ squash commits into a638c52f299c89c6d565e034fdf2d21c0275f8e1 3883 + │ args: jj squash --quiet -m 'hi 3884 + 3885 + 3886 + 3887 + │ hi 3888 + 3889 + │ ' --color always 3890 + ○ 835be5b68838 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3891 + │ prev: 6c7f1ef59cb1 -> editing e4fb6d7146c2 3892 + │ args: jj prev --edit --color always 3893 + ○ b669936a2f9b eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 3894 + │ commit 17bb4b2e967bd817def69f549154ddd0aa9283b2 3895 + │ args: jj commit -m hi --color always 3896 + ○ 6ddb76e610f3 eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 3897 + │ commit 891985da418d88df9793501a85bd0268af570d81 3898 + │ args: jj commit -m hi --color always 3899 + ○ 43edbacca45f eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 3900 + │ commit f1a77dc0c1daab8fbb79e0db6c99398bcc7be2c5 3901 + │ args: jj commit -m hi --color always 3902 + ○ df1d8579bf54 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3903 + │ prev: 09defe55dea1 -> editing f1a77dc0c1da 3904 + │ args: jj prev --edit --color always 3905 + ○ 3d233095f4d9 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3906 + │ squash commits into 0a9e2acd6785c0d7e3c8d3a8dcfcbefe0725ef64 3907 + │ args: jj squash --quiet -m 'hi 3908 + 3909 + 3910 + 3911 + │ theer 3912 + 3913 + │ made 3914 + 3915 + 3916 + │ ' --color always 3917 + ○ 5fdb53437364 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3918 + │ prev: 4d6c191bf4cf -> editing 2f7b7c3e3fab 3919 + │ args: jj prev --edit --color always 3920 + ○ f1e41c5cfa3e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 3921 + │ squash commits into 327f68db14d6cb931c837b3114ae20701eacfefc 3922 + │ args: jj squash --quiet -m 'theer 3923 + 3924 + │ made 3925 + 3926 + │ ' --color always 3927 + ○ 57cf0ac648d3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3928 + │ prev: b9d50011a6d3 -> editing a73a3ef803a2 3929 + │ args: jj prev --edit --color always 3930 + ○ 0435af533e54 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3931 + │ commit 3d8028fbe7d23c31ea960b09e0cedd7bfc4dcdad 3932 + │ args: jj commit -m made --color always 3933 + ○ 3a9648c27abf eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 3934 + │ commit e7b7bf1c9d567e65167b3ac35f392cc11687b406 3935 + │ args: jj commit -m theer --color always 3936 + ○ 96201e98fd81 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 3937 + │ commit 1fe464ed62d843e7ba91771832efc7151110e5f5 3938 + │ args: jj commit -m hi --color always 3939 + ○ 233c213fd250 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3940 + │ prev: 09c1c1b77902 -> editing 1fe464ed62d8 3941 + │ args: jj prev --edit --color always 3942 + ○ 0733c52b95c1 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3943 + │ squash commits into 0a2fe8cd9efe5d82c14abec98c7d3196efad7890 3944 + │ args: jj squash --quiet -m 'there 3945 + 3946 + 3947 + │ mate 3948 + 3949 + │ ' --color always 3950 + ○ 3959931336a8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3951 + │ prev: c3f8e3692fbb -> editing 993e23d8d37a 3952 + │ args: jj prev --edit --color always 3953 + ○ 530bda78a91d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 3954 + │ commit 9265fd9185fae9942961e93d240cdaa9b758d6f7 3955 + │ args: jj commit -m mate --color always 3956 + ○ 51de25fe3b29 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 3957 + │ commit cca11a5ea849e3c9f52c24065abe36a1ecb5f09f 3958 + │ args: jj commit -m there --color always 3959 + ○ d49c25325d32 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 3960 + │ commit a8e890af7716212bf34a42f0da6735c9fcfeccc4 3961 + │ args: jj commit -m hi --color always 3962 + ○ 542217fd9678 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3963 + │ prev: 26bc476cecf5 -> editing a8e890af7716 3964 + │ args: jj prev --edit --color always 3965 + ○ 1ae1c544e128 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3966 + │ squash commits into e74ff9b54a9dbfedfb110906614f994454ea7880 3967 + │ args: jj squash --quiet -m 'heyyyy 3968 + 3969 + 3970 + │ hiii 3971 + 3972 + │ ' --color always 3973 + ○ bd95023049f0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3974 + │ snapshot working copy 3975 + │ args: jj show --color always 3976 + ○ 974d7b339326 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3977 + │ snapshot working copy 3978 + │ args: jj log --no-graph -T '"::"++current_working_copy++"::\n"++description++"\n::end::\n"' 3979 + ○ 5c32f1107dbc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3980 + │ next: e74ff9b54a9d -> editing d83af389d9ef 3981 + │ args: jj next --edit --color always 3982 + ○ 1359bbff928a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3983 + │ next: a39ba96d6e4a -> editing e74ff9b54a9d 3984 + │ args: jj next --edit --color always 3985 + ○ 8ba828b8ea12 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3986 + │ prev: e74ff9b54a9d -> editing a39ba96d6e4a 3987 + │ args: jj prev --edit --color always 3988 + ○ 9640ee5972f9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3989 + │ describe commit fce0cb59e1f4310daa2dd52fd68754f22d2f7f35 3990 + │ args: jj describe -m heyyyy --color always 3991 + ○ 0c36998be726 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 3992 + │ prev: 95b2bf3f1135 -> editing fce0cb59e1f4 3993 + │ args: jj prev --edit --color always 3994 + ○ 72b85377f065 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 3995 + │ describe commit 5578d593d4ac962736605ee8207665366a88ff76 3996 + │ args: jj describe -m hiii --color always 3997 + ○ 99ec0f674b2e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 3998 + │ new empty commit 3999 + │ args: jj new --color always 4000 + ○ 3d6f0119134d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4001 + │ commit 140f6af911abae8f52fa038fbc9518bb4822fb5a 4002 + │ args: jj commit -m hiiiii --color always 4003 + ○ 79ff34f9df9c eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4004 + │ new empty commit 4005 + │ args: jj new --color always 4006 + ○ 794cc557ab24 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4007 + │ prev: 18a13c73abcb -> editing b774cec816ba 4008 + │ args: jj prev --edit --color always 4009 + ○ 3d386c7ebc53 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4010 + │ squash commits into d2fbf2ba883fef628309be4ce4d0d194af797c69 4011 + │ args: jj squash --quiet -m ' hi 4012 + │ hi' --color always 4013 + ○ c4c818190f84 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4014 + │ next: d2fbf2ba883f -> editing 1f962613fdff 4015 + │ args: jj next --edit --color always 4016 + ○ d9a516d97517 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4017 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 4018 + │ args: jj next --edit --color always 4019 + ○ d3193ea846ca eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4020 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 4021 + │ args: jj prev --edit --color always 4022 + ○ 9795b66a350d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4023 + │ prev: 1f962613fdff -> editing d2fbf2ba883f 4024 + │ args: jj prev --edit --color always 4025 + ○ 8eb189214c1f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4026 + │ prev: de3d206586eb -> editing 1f962613fdff 4027 + │ args: jj prev --edit --color always 4028 + ○ 3d0ebb24fde9 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 4029 + │ commit 4fc1da577d622650339905379b24c10182f8213f 4030 + │ args: jj commit -m hi --color always 4031 + ○ 906dedf9bf65 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4032 + │ new empty commit 4033 + │ args: jj new --color always 4034 + ○ 79a2293e6ebe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4035 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 4036 + │ args: jj next --edit --color always 4037 + ○ 7ff7dd3ac474 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4038 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 4039 + │ args: jj prev --edit --color always 4040 + ○ 2082701b30f9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4041 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 4042 + │ args: jj next --edit --color always 4043 + ○ 1b46eec9cf13 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4044 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 4045 + │ args: jj prev --edit --color always 4046 + ○ 331dd68121cb eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4047 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 4048 + │ args: jj next --edit --color always 4049 + ○ 6149ef8de1a3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4050 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 4051 + │ args: jj prev --edit --color always 4052 + ○ d0280d2971ba eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4053 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 4054 + │ args: jj next --edit --color always 4055 + ○ 55e9e5b666c4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4056 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 4057 + │ args: jj prev --edit --color always 4058 + ○ eb69650930c2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4059 + │ describe commit f7f6a239f683133aea01c9348214a4387f2f4233 4060 + │ args: jj describe -m hi --color always 4061 + ○ 57ff3a6b65c9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4062 + │ new empty commit 4063 + │ args: jj new --color always 4064 + ○ 92e5a759b532 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4065 + │ prev: db28a3c94548 -> editing 156f77d97c30 4066 + │ args: jj prev --edit --color always 4067 + ○ 52f9d46ebed0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4068 + │ squash commits into ce6791c1369d899c890905b4afba26e93f99b059 4069 + │ args: jj squash --quiet -m '◉ top 4070 + │ @ bottom' --color always 4071 + ○ 1d1d1f007a70 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4072 + │ describe commit 205d2260c671e0d59fea1bd704db38ef37f35feb 4073 + │ args: jj describe -m bottom --color always 4074 + ○ 466a213fcfca eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4075 + │ new empty commit 4076 + │ args: jj new --color always 4077 + ○ 1d987e97b96e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4078 + │ describe commit 45e24d7495a87dcfe31b87feee6a5ff306cd34da 4079 + │ args: jj describe -m top --color always 4080 + ○ 61db9da90743 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4081 + │ new empty commit 4082 + │ args: jj new --color always 4083 + ○ 0f3e71bb30d6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4084 + │ prev: 27c5ac2f280e -> editing cf157ef807a2 4085 + │ args: jj prev --edit --color always 4086 + ○ 7dcc590a6c5a eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4087 + │ squash commits into f0a8ee6faf9531723ac069aba25c698e843f2bc5 4088 + │ args: jj squash --quiet -m '\'◉ top 4089 + │ @ \' bottom 4090 + │ │ top\'\'' --color always 4091 + ○ de8f4fcc492c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4092 + │ next: f0a8ee6faf95 -> editing 32a7bd1d1da4 4093 + │ args: jj next --edit --color always 4094 + ○ 272e024b34f1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4095 + │ prev: 32a7bd1d1da4 -> editing f0a8ee6faf95 4096 + │ args: jj prev --edit --color always 4097 + ○ 3c40022e3ab2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4098 + │ next: f0a8ee6faf95 -> editing 32a7bd1d1da4 4099 + │ args: jj next --edit --color always 4100 + ○ 384780c22afa eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4101 + │ prev: 32a7bd1d1da4 -> editing f0a8ee6faf95 4102 + │ args: jj prev --edit --color always 4103 + ○ f7ef54954104 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4104 + │ prev: 83e52c5bad57 -> editing 32a7bd1d1da4 4105 + │ args: jj prev --edit --color always 4106 + ○ 1276407ad8fb eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4107 + │ squash commits into 50a646e48dc375fb39f24d5056b05699bd756a19 4108 + │ args: jj squash --quiet -m '\' bottom 4109 + │ top\'' --color always 4110 + ○ 1f026b64b28d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4111 + │ next: 50a646e48dc3 -> editing 647056aa842a 4112 + │ args: jj next --edit --color always 4113 + ○ 300b004a7d08 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4114 + │ prev: 1ccda61c8afb -> editing 50a646e48dc3 4115 + │ args: jj prev --edit --color always 4116 + ○ 3307862123fa eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4117 + │ commit c567ed81c071bc84de591c42843125f5c40058a0 4118 + │ args: jj commit -m bottom --color always 4119 + ○ 05533a1e03e3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4120 + │ prev: b8ff36a2e567 -> editing c567ed81c071 4121 + │ args: jj prev --edit --color always 4122 + ○ 7e8e95d1639e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4123 + │ describe commit 1314b89c9c73d1b58444203a7b37803dfa5618e9 4124 + │ args: jj describe -m top --color always 4125 + ○ b361daa69f91 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4126 + │ describe commit 6d84b0df6f455c79dca8ad8fa14014dfd98e018f 4127 + │ args: jj describe -m bottom --color always 4128 + ○ 09b2fc440548 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4129 + │ new empty commit 4130 + │ args: jj new --color always 4131 + ○ a38479196b0e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4132 + │ commit 00c3ea8fee69a8d37022a3b82204ce99f5bfb014 4133 + │ args: jj commit -m top --color always 4134 + ○ ae4096910b24 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4135 + │ squash commits into f8625ee3fa8c7d82cb14f40e49fb7b498c123606 4136 + │ args: jj squash --quiet -m '\' \' hi 4137 + │ hi\' 4138 + │ hi\'' --color always 4139 + ○ 97cd694b3d62 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 4140 + │ describe commit 7338aec8c0a4b9718f1f096970017c7ccfe480d6 4141 + │ args: jj describe -m hi --color always 4142 + ○ e82d5c639ccb eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4143 + │ new empty commit 4144 + │ args: jj new --color always 4145 + ○ a517a8e91755 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4146 + │ prev: f4f6a1633518 -> editing f8625ee3fa8c 4147 + │ args: jj prev --edit --color always 4148 + ○ 6c279d45d045 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4149 + │ squash commits into d0ce96126dee3281b467802904bde912d45a3527 4150 + │ args: jj squash --quiet -m '\' hi 4151 + │ hi\'' --color always 4152 + ○ c1d51e2755e0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4153 + │ next: d0ce96126dee -> editing e82e5b5491cd 4154 + │ args: jj next --edit --color always 4155 + ○ fd94b05e3ca2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4156 + │ next: e817aa28318f -> editing d0ce96126dee 4157 + │ args: jj next --edit --color always 4158 + ○ 9124112d1dbd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4159 + │ prev: d0ce96126dee -> editing e817aa28318f 4160 + │ args: jj prev --edit --color always 4161 + ○ 7252bfb45762 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4162 + │ describe commit ae954d026f84db8bfa794e6232b40e692c59e229 4163 + │ args: jj describe -m hi --color always 4164 + ○ 94aea33cbd7b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4165 + │ prev: e355f252ac5a -> editing ae954d026f84 4166 + │ args: jj prev --edit --color always 4167 + ○ f260ae605079 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 4168 + │ describe commit c1ace5daa8404742bbd66789a29f34633825acf8 4169 + │ args: jj describe -m hi --color always 4170 + ○ 35b7b6600bf7 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4171 + │ new empty commit 4172 + │ args: jj new --color always 4173 + ○ 68933af246a6 eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 4174 + │ squash commits into 18ab77d50aaef2c55f808a339c8ac8c2d6ea2ddb 4175 + │ args: jj squash --quiet -m ' hi there mat 4176 + │ yyyyyyyy 4177 + │ this is a commit 4178 + │ commit 4179 + │ top commit 4180 + │ topper commit' --color always 4181 + ○ 9cc80e5f627e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4182 + │ prev: d2a4e6243427 -> editing bb65a7894857 4183 + │ args: jj prev --edit --color always 4184 + ○ 5a4863efebca eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4185 + │ squash commits into 3eaf5931de732431dccef0cbdad6c56fbef5c24e 4186 + │ args: jj squash --quiet -m ' top commit 4187 + │ topper commit' --color always 4188 + ○ 026432566bef eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4189 + │ describe commit 0eb5a19656c0e4cced7ec50c196477c24fb176e7 4190 + │ args: jj describe -m 'topper commit' --color always 4191 + ○ 579f436ac715 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4192 + │ new empty commit 4193 + │ args: jj new --color always 4194 + ○ e55221df45cc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4195 + │ describe commit d5baf524331cacd7ea920ca3bdc013e38d7686cf 4196 + │ args: jj describe -m 'top commit' --color always 4197 + ○ 0dd772cbc20f eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4198 + │ new empty commit 4199 + │ args: jj new --color always 4200 + ○ b25c1cc7a8a6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4201 + │ prev: 8e1093c7e457 -> editing 18ab77d50aae 4202 + │ args: jj prev --edit --color always 4203 + ○ 6d81914894b1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4204 + │ squash commits into fe87bc4a05fd40f0055a43562c5bc516f879c0ed 4205 + │ args: jj squash --quiet -m ' hi there mat 4206 + │ yyyyyyyy 4207 + │ this is a commit 4208 + │ commit' --color always 4209 + ○ 31a34cca8ec6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4210 + │ next: fe87bc4a05fd -> editing 1193ed1893f1 4211 + │ args: jj next --edit --color always 4212 + ○ 2578d0def711 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4213 + │ prev: 1193ed1893f1 -> editing fe87bc4a05fd 4214 + │ args: jj prev --edit --color always 4215 + ○ c7b612d848be eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4216 + │ prev: 42f0dcc74dc0 -> editing 1193ed1893f1 4217 + │ args: jj prev --edit --color always 4218 + ○ 586da1bae0a6 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4219 + │ squash commits into f25dfcedf981a094b07f0139ed65529835c48c6a 4220 + │ args: jj squash --quiet -m ' this is a commit 4221 + │ commit' --color always 4222 + ○ 63df71358f8a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4223 + │ describe commit 4d19c2bdae62d269980aeb4dc084c613fee826a6 4224 + │ args: jj describe -m commit --color always 4225 + ○ c2d08949d823 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4226 + │ commit ff87f3f2a5122b8d82a4647510b8ab73d5f83f95 4227 + │ args: jj commit -m 'this is a commit' --color always 4228 + ○ 4a0c3db017a6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4229 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 4230 + │ args: jj next --edit --color always 4231 + ○ 78cb97b6ce83 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4232 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 4233 + │ args: jj prev --edit --color always 4234 + ○ a89761ade04f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4235 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 4236 + │ args: jj next --edit --color always 4237 + ○ f324a488d108 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4238 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 4239 + │ args: jj prev --edit --color always 4240 + ○ e0b783238c27 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4241 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 4242 + │ args: jj next --edit --color always 4243 + ○ 91235f435de5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4244 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 4245 + │ args: jj prev --edit --color always 4246 + ○ 940c3ac42718 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4247 + │ describe commit 5c0afa99dcd1e5507ceddc59eb3716f59a5191ad 4248 + │ args: jj describe -m 'hely there' --color always 4249 + ○ 2302b65d18bf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4250 + │ new empty commit 4251 + │ args: jj new --color always 4252 + ○ bff2ab254bfa eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4253 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 4254 + │ args: jj next --edit --color always 4255 + ○ 901efcc54ae8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4256 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 4257 + │ args: jj prev --edit --color always 4258 + ○ 6d70d536ab10 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4259 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 4260 + │ args: jj next --edit --color always 4261 + ○ 656a0126e7e4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4262 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 4263 + │ args: jj prev --edit --color always 4264 + ○ a144c62c7837 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4265 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 4266 + │ args: jj next --edit --color always 4267 + ○ 6bb9f183444c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4268 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 4269 + │ args: jj prev --edit --color always 4270 + ○ 70b5ca56ada0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4271 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 4272 + │ args: jj next --edit --color always 4273 + ○ 835f6c9b8a72 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4274 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 4275 + │ args: jj prev --edit --color always 4276 + ○ ed1ac1807351 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4277 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 4278 + │ args: jj next --edit --color always 4279 + ○ fdd896eb9553 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4280 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 4281 + │ args: jj prev --edit --color always 4282 + ○ 789df408207c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4283 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 4284 + │ args: jj next --edit --color always 4285 + ○ f2b429de9cb2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4286 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 4287 + │ args: jj next --edit --color always 4288 + ○ cc816f4ae364 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4289 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 4290 + │ args: jj next --edit --color always 4291 + ○ 156f7cf54933 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4292 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 4293 + │ args: jj prev --edit --color always 4294 + ○ 94a5b651ff11 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4295 + │ prev: c3b589acfe23 -> editing 8d106e583dc6 4296 + │ args: jj prev --edit --color always 4297 + ○ 7a23e316c947 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4298 + │ new empty commit 4299 + │ args: jj new --color always 4300 + ○ a5a8b83e5314 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4301 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 4302 + │ args: jj prev --color always 4303 + ○ 0b1c2e04d971 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4304 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 4305 + │ args: jj prev --edit --color always 4306 + ○ 055acb5faa3e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4307 + │ prev: 225de22ef62d -> editing fe87bc4a05fd 4308 + │ args: jj prev --edit --color always 4309 + ○ c94e1a034136 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4310 + │ squash commits into 99f39383d166ff653f06801222dee4a8dae92c50 4311 + │ args: jj squash --quiet -m ' hi there mat 4312 + │ yyyyyyyy 4313 + │ ' --color always 4314 + ○ 421981001df6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4315 + │ describe commit 47a7471e53d1e823aa10cc93a0bd391d56ae1600 4316 + │ args: jj describe -m h --color always 4317 + ○ 29689d961d03 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4318 + │ new empty commit 4319 + │ args: jj new --color always 4320 + ○ b0c2b74a6043 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4321 + │ prev: 06f5d53d2e8f -> editing 99f39383d166 4322 + │ args: jj prev --edit --color always 4323 + ○ 612a4ab1b057 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4324 + │ squash commits into 1457bf903cc993893cf68de3ee76c163a164d1dd 4325 + │ args: jj squash --quiet -m 'hi there mate 4326 + │ yyyyyyyy2 4327 + │ ' --color always 4328 + ○ 8e734856b428 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4329 + │ describe commit bcfecf26c567ee77cbb8f70503075330b0eec1e7 4330 + │ args: jj describe -m h --color always 4331 + ○ c316a1f806c3 eli@eli-nixos-xps 3 months ago, lasted 8 milliseconds 4332 + │ new empty commit 4333 + │ args: jj new --color always 4334 + ○ 0ac2c3561664 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4335 + │ prev: 4bfe97e78880 -> editing 1457bf903cc9 4336 + │ args: jj prev --edit --color always 4337 + ○ 30b466f48c0b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4338 + │ squash commits into be99ca72c432c245b909449d9607eaef5c81bc62 4339 + │ args: jj squash --quiet -m 'hi there mate 4340 + │ yyyyyyyy2' --color always 4341 + ○ 9f85bb043617 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4342 + │ prev: 157be426bb53 -> editing 44f387767d12 4343 + │ args: jj prev --edit --color always 4344 + ○ 3775dd33bd2a eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4345 + │ commit 022f99b6d9b8408d60748cf5d12bf22b1af2ea52 4346 + │ args: jj commit -m heyyyyyyyy2 --color always 4347 + ○ 277723acd733 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4348 + │ commit 90032a7b8d4095d26421ba2ca6abc41697ceffe0 4349 + │ args: jj commit -m 'hi there mate' --color always 4350 + ○ 478a422322b4 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4351 + │ squash commits into a1d466a6844248a3b22cfc818dfc135b81800721 4352 + │ args: jj squash --quiet -m ' hi2 4353 + │ hi3' --color always 4354 + ○ 280c74b24d68 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4355 + │ prev: a438131bc1ba -> editing da8a3d50b051 4356 + │ args: jj prev --edit --color always 4357 + ○ 3df55b0b9c9d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4358 + │ commit 6dd0c512f09ff77281a2085d4a90d56f0bbc3216 4359 + │ args: jj commit -m hi3 --color always 4360 + ○ 2b23e4116a3b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4361 + │ commit 192954578eb7130b6a2abc9a152c06d590c7103b 4362 + │ args: jj commit -m hi2 --color always 4363 + ○ 9641ff68e0b8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4364 + │ commit fd87c5dbd403ac3f555600df53bebfad3e95c412 4365 + │ args: jj commit -m hi --color always 4366 + ○ c8820346fc54 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4367 + │ squash commits into 0a409b39ba02064525c85594ce3414ed9533b941 4368 + │ args: jj squash --quiet -m ' this is a thi 4369 + │ this is anoth 4370 + │ now anothe 4371 + │ no 4372 + │ this is ne' --color always 4373 + ○ 839c4efa675e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4374 + │ prev: c6b827eeb6d9 -> editing 31e094baca12 4375 + │ args: jj prev --edit --color always 4376 + ○ 00e94b5ef2f1 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4377 + │ squash commits into a30ae8a25dbb9ccb10d98b0fcfd49840d3c58e98 4378 + │ args: jj squash --quiet -m ' no 4379 + │ this is ne' --color always 4380 + ○ f9aaf009216c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4381 + │ prev: cae90814da8b -> editing 52881c5ed406 4382 + │ args: jj prev --edit --color always 4383 + ○ df70ee7fb571 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4384 + │ commit 687d0f50a6e2e88fd380479e4fa42a781f55e631 4385 + │ args: jj commit -m 'this is new' --color always 4386 + ○ 7f7520f3c64f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4387 + │ commit 728111e81196e6b91fc3ac657deba15f9304cb91 4388 + │ args: jj commit -m now --color always 4389 + ○ 92167d93630b eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4390 + │ new empty commit 4391 + │ args: jj new --color always 4392 + ○ 2442dcd504f4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4393 + │ next: 3eae36a2605b -> editing 0a409b39ba02 4394 + │ args: jj next --edit --color always 4395 + ○ 80af4ec24bda eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4396 + │ next: d648d9dc91ca -> editing 3eae36a2605b 4397 + │ args: jj next --edit --color always 4398 + ○ 90358830f841 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4399 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 4400 + │ args: jj prev --edit --color always 4401 + ○ 83867c22075a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4402 + │ prev: 0a409b39ba02 -> editing 3eae36a2605b 4403 + │ args: jj prev --edit --color always 4404 + ○ f63a16e3709c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4405 + │ next: 3eae36a2605b -> editing 0a409b39ba02 4406 + │ args: jj next --edit --color always 4407 + ○ 7e97385ab087 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4408 + │ prev: 0a409b39ba02 -> editing 3eae36a2605b 4409 + │ args: jj prev --edit --color always 4410 + ○ 624c4b1877c8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4411 + │ prev: 24ce6f90f0b7 -> editing 0a409b39ba02 4412 + │ args: jj prev --edit --color always 4413 + ○ 95897ffa0d66 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4414 + │ squash commits into 74584829d54c50c43cd7cb61ab34f43d5bbfad48 4415 + │ args: jj squash --quiet -m ' this is a thi 4416 + │ this is anoth 4417 + │ now anothe' --color always 4418 + ○ 39da8f5514c6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4419 + │ describe commit d6e0881ed10552841ef050483e662385da7cd98c 4420 + │ args: jj describe -m 'now another' --color always 4421 + ○ b703a5c6aa73 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4422 + │ new empty commit 4423 + │ args: jj new --color always 4424 + ○ c0958f2efd9d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4425 + │ prev: 20e100f23ad8 -> editing 74584829d54c 4426 + │ args: jj prev --edit --color always 4427 + ○ 518d52001d89 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4428 + │ squash commits into 7ba9245258b17c06ef1f52d56428e86d52feed93 4429 + │ args: jj squash --quiet -m ' this is a thin 4430 + │ this is anothe' --color always 4431 + ○ cfdcfe764978 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4432 + │ describe commit 400c8a9362371dee59677733f87937da54abaa54 4433 + │ args: jj describe -m 'this is another' --color always 4434 + ○ 9fbf7f954ee9 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4435 + │ new empty commit 4436 + │ args: jj new --color always 4437 + ○ 46770e4be71d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4438 + │ describe commit d3fcbecf2f1e7552a881605dd949249f88582f0b 4439 + │ args: jj describe -m 'this is a thing' --color always 4440 + ○ 1087912733f5 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 4441 + │ new empty commit 4442 + │ args: jj new --color always 4443 + ○ ab36c9539ac3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4444 + │ prev: ba9c580d4485 -> editing 3eae36a2605b 4445 + │ args: jj prev --edit --color always 4446 + ○ 5e2f02c3acff eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 4447 + │ squash commits into e3db7fd1a46b40ecb3e55f3bc53a42ef7405bf38 4448 + │ args: jj squash --quiet -m ' h 4449 + │ this is my message 4450 + │ hello this is my special 4451 + │ hi \n this is \n a multi l 4452 + 4453 + │ th 4454 + │ │ 4455 + │ m' --color always 4456 + ○ aaba6e4045e5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4457 + │ next: e3db7fd1a46b -> editing f8c79ce3d777 4458 + │ args: jj next --edit --color always 4459 + ○ d6a941f7be1e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4460 + │ next: d648d9dc91ca -> editing e3db7fd1a46b 4461 + │ args: jj next --edit --color always 4462 + ○ 10dd0c19a400 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4463 + │ prev: e3db7fd1a46b -> editing d648d9dc91ca 4464 + │ args: jj prev --edit --color always 4465 + ○ 085d072dbd7e eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4466 + │ describe commit d12586fdc5021c0201392a705d6df5e6fcacb539 4467 + │ args: jj describe -m hi --color always 4468 + ○ 0c7a46ddad47 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4469 + │ prev: b0c0787a8f3a -> editing d12586fdc502 4470 + │ args: jj prev --edit --color always 4471 + ○ 873ab7a524e0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4472 + │ prev: 69a38f67d1cf -> editing b0c0787a8f3a 4473 + │ args: jj prev --edit --color always 4474 + ○ 5b5cb72ec4b8 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4475 + │ squash commits into b3e4d35c33b7046dd5e710b4401a8b08e5c2af03 4476 + │ args: jj squash --quiet -m ' this is my message : 4477 + │ hello this is my special b 4478 + │ hi \n this is \n a multi li 4479 + │ n 4480 + │ the 4481 + 4482 + │ mo' --color always 4483 + ○ 986fad765f33 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4484 + │ next: b3e4d35c33b7 -> editing 773597b3d0f1 4485 + │ args: jj next --edit --color always 4486 + ○ f42938919c54 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4487 + │ prev: 773597b3d0f1 -> editing b3e4d35c33b7 4488 + │ args: jj prev --edit --color always 4489 + ○ cdf4da0487d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4490 + │ prev: 6393780b30ec -> editing 773597b3d0f1 4491 + │ args: jj prev --edit --color always 4492 + ○ d6688e060a1a eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 4493 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 4494 + │ args: jj squash --quiet -m ' hello this is my special bo 4495 + │ hi \n this is \n a multi lin 4496 + │ no 4497 + │ ther 4498 + │ i 4499 + │ mor' --color always 4500 + ○ fff2af294d04 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4501 + │ describe commit 9eb92d2014b4ab3ebf640492fb0775987ed3adda 4502 + │ args: jj desc 4503 + ○ 28b803520ea6 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 4504 + │ describe commit df00622cb6f12b5a1f6e2e39cc84b4d4c3e547be 4505 + │ args: jj desc -m 'hi \n this is \n a multi line' 4506 + ○ 336c08cafc20 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 4507 + │ describe commit fa1b077eee7d761770d5293e6ba893c678aac280 4508 + │ args: jj desc -m 'hi \n this is \n a multi \n line' 4509 + ○ 69e12ef2e07d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4510 + │ undo operation 7374a0cd8a6616cc6a60933fd964955f178d1068641ebd88a377c428ed215dbf2962f009c687f9bae6838b6482d1e1e3fae240ad0d142d8b2bb8fd1c66bd857b 4511 + │ args: jj undo 4512 + ○ 7374a0cd8a66 eli@eli-nixos-xps 3 months ago, lasted 1 second 4513 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 4514 + │ args: jj squash --quiet 4515 + ○ 2a558963f66c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4516 + │ undo operation 2b7e1078d924e9fb7ac4bbb5761ff4cb3056c7b648eb464d1765b3c74dd771ad910874106918e4443d725bacf0bac7d55a902d1bbee7ed0631847e006cb5cc8b 4517 + │ args: jj undo 4518 + ○ 2b7e1078d924 eli@eli-nixos-xps 3 months ago, lasted 7 seconds 4519 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 4520 + │ args: jj squash 4521 + ○ ae6fc6d7b96f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4522 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 4523 + │ args: jj next --edit --color always 4524 + ○ 41674f86b372 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4525 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 4526 + │ args: jj next --edit --color always 4527 + ○ 5eb0011619b1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4528 + │ prev: 2ae3d1650045 -> editing b3e4d35c33b7 4529 + │ args: jj prev --edit --color always 4530 + ○ c02ce79c4283 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4531 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 4532 + │ args: jj prev --edit --color always 4533 + ○ 9dd9ae638561 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4534 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 4535 + │ args: jj next --edit --color always 4536 + ○ ff5870588251 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4537 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 4538 + │ args: jj next --edit --color always 4539 + ○ cd49d6aba628 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4540 + │ prev: 2ae3d1650045 -> editing b3e4d35c33b7 4541 + │ args: jj prev --edit --color always 4542 + ○ 9ca54ed66cac eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4543 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 4544 + │ args: jj prev --edit --color always 4545 + ○ 6763fc518d71 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4546 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 4547 + │ args: jj next --edit --color always 4548 + ○ 2fc1aa9d45cc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4549 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 4550 + │ args: jj prev --edit --color always 4551 + ○ ca730b90aea4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4552 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 4553 + │ args: jj next --edit --color always 4554 + ○ 34a707bfe05d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4555 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 4556 + │ args: jj prev --edit --color always 4557 + ○ 085e9bb05257 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4558 + │ prev: b0c4617ffa7d -> editing fa1b077eee7d 4559 + │ args: jj prev --edit --color always 4560 + ○ 3022b554c46f eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4561 + │ commit d719e11dd85bdb744ff66b25e25271d4a862ec09 4562 + │ args: jj commit -m hiiiii --color always 4563 + ○ 8145b341d893 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4564 + │ next: 2ae3d1650045 -> editing d719e11dd85b 4565 + │ args: jj next --edit --color always 4566 + ○ 97c3b7bf48cf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4567 + │ prev: d719e11dd85b -> editing 2ae3d1650045 4568 + │ args: jj prev --edit --color always 4569 + ○ 35f4fd06cd39 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4570 + │ next: 2ae3d1650045 -> editing d719e11dd85b 4571 + │ args: jj next --edit --color always 4572 + ○ ec440b1f43ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4573 + │ prev: d719e11dd85b -> editing 2ae3d1650045 4574 + │ args: jj prev --edit --color always 4575 + ○ f3b61e5fb0fb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4576 + │ prev: 8cd0454a21da -> editing d719e11dd85b 4577 + │ args: jj prev --edit --color always 4578 + ○ 785d92e031b6 eli@eli-nixos-xps 3 months ago, lasted 10 seconds 4579 + │ squash commits into 8462bc918128fbaff8b644f0c8990236b9ef675f 4580 + │ args: jj squash 4581 + ○ 760e2b6cec7f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4582 + │ next: 8462bc918128 -> editing b04601bd562b 4583 + │ args: jj next --edit --color always 4584 + ○ 4eb1f21ec911 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4585 + │ next: 2ae3d1650045 -> editing 8462bc918128 4586 + │ args: jj next --edit --color always 4587 + ○ 9c2a2c7a5968 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4588 + │ prev: 8462bc918128 -> editing 2ae3d1650045 4589 + │ args: jj prev --edit --color always 4590 + ○ f1664a977024 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4591 + │ prev: b04601bd562b -> editing 8462bc918128 4592 + │ args: jj prev --edit --color always 4593 + ○ 0eb8c8aa57e4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4594 + │ next: 8462bc918128 -> editing b04601bd562b 4595 + │ args: jj next --edit --color always 4596 + ○ 498bf80c28d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4597 + │ prev: b04601bd562b -> editing 8462bc918128 4598 + │ args: jj prev --edit --color always 4599 + ○ 1a1b9f69d7c5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4600 + │ prev: 380b86b14035 -> editing b04601bd562b 4601 + │ args: jj prev --edit --color always 4602 + ○ b641345bb0dc eli@eli-nixos-xps 3 months ago, lasted 21 seconds 4603 + │ squash commits into 7b9aa64334f71116151da406c22a6acff8034a79 4604 + │ args: jj squash 4605 + ○ 57c74721a175 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4606 + │ next: 7b9aa64334f7 -> editing ac5d6b68c353 4607 + │ args: jj next --edit --color always 4608 + ○ 582ea275768c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4609 + │ prev: 908c5a93a070 -> editing 7b9aa64334f7 4610 + │ args: jj prev --edit --color always 4611 + ○ ae9e34b1876f eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 4612 + │ squash commits into 76d3e5700bae704cbb5be19e24e0750d351e8b9d 4613 + │ args: jj squash 4614 + ○ f58bd48f9277 eli@eli-nixos-xps 3 months ago, lasted 43 seconds 4615 + │ squash commits into 668cc05d3e3aae7423e0529cbd7bee3244df6937 4616 + │ args: jj squash 4617 + ○ 65b81990de1b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4618 + │ rebase commit 5ed7a69853871be56aed990b217ef798412fc523 4619 + │ args: jj rebase -r @ -d u --color always 4620 + ○ 28230b698671 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4621 + │ describe commit 830e03c6c8cd63e4061406ecea11e3baa0804a4b 4622 + │ args: jj describe -m 'new steuff' --color always 4623 + ○ f050a744b838 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4624 + │ next: 72361777e19e -> editing 830e03c6c8cd 4625 + │ args: jj next --edit --color always 4626 + ○ e644b5eb7f75 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4627 + │ prev: 830e03c6c8cd -> editing 72361777e19e 4628 + │ args: jj prev --edit --color always 4629 + ○ 20f3a6a558f9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4630 + │ snapshot working copy 4631 + │ args: jj prev --edit --color always 4632 + ○ 9742b7c4ee6b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4633 + │ commit 6bfd852f2c0147705ce9868ebef6b78f732cc29d 4634 + │ args: jj commit -m extra --color always 4635 + ○ 7a797e4c5627 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4636 + │ next: 668cc05d3e3a -> editing 6bfd852f2c01 4637 + │ args: jj next --edit --color always 4638 + ○ 90229c010d34 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4639 + │ prev: 6bfd852f2c01 -> editing 668cc05d3e3a 4640 + │ args: jj prev --edit --color always 4641 + ○ 44d5c82aae91 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4642 + │ snapshot working copy 4643 + │ args: jj prev --edit --color always 4644 + ○ e8fd6539165c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4645 + │ describe commit a4e05a4b131b41b732937d14dd82e4dcd2dae3b7 4646 + │ args: jj describe -m 'this is new' --color always 4647 + ○ 9f855ceb1599 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4648 + │ new empty commit 4649 + │ args: jj new --color always 4650 + ○ 9b3f2aa41814 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4651 + │ next: 8462bc918128 -> editing 668cc05d3e3a 4652 + │ args: jj next --edit --color always 4653 + ○ 68f60c866128 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4654 + │ describe commit f813640477a0b7e6ec55b09bfbe12de75390fb95 4655 + │ args: jj describe -m hi --color always 4656 + ○ dfb756887e70 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4657 + │ snapshot working copy 4658 + │ args: jj show --color always 4659 + ○ accdaec67195 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4660 + │ next: 2ae3d1650045 -> editing 851991850ea8 4661 + │ args: jj next --edit --color always 4662 + ○ be19b860c1fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4663 + │ prev: 851991850ea8 -> editing 2ae3d1650045 4664 + │ args: jj prev --edit --color always 4665 + ○ ae7e42c0df77 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4666 + │ prev: 71256f7d85c2 -> editing 851991850ea8 4667 + │ args: jj prev --edit --color always 4668 + ○ c17cfff5ac1f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4669 + │ undo operation 4361df5107eddbc0094a58ed57de702409d25ba16e79308eefb7075d7bdbd168fd57e0f6f94a79fb7f60eddfc381ef4057c53bba96ece55930994fa34b21451c 4670 + │ args: jj undo 4671 + ○ 4361df5107ed eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 4672 + │ rebase commit 71256f7d85c2a85cd0590943198b89051aa7cebe 4673 + │ args: jj rebase -r @ -d t --color always 4674 + ○ 0da4f9de1ce1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4675 + │ undo operation 9f9e306937d410cd10ce5fcfcd814ed8cb38f3f6fe1f5886e0d81986759c74ffcdd3a527c55d3629b6e034a42c8069a780db816b283bbe174d8bb87e9a69355c 4676 + │ args: jj undo 4677 + ○ 9f9e306937d4 eli@eli-nixos-xps 3 months ago, lasted 8 milliseconds 4678 + │ abandon commit 71256f7d85c2a85cd0590943198b89051aa7cebe 4679 + │ args: jj abandon 4680 + ○ 1750a7ff0ecc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4681 + │ snapshot working copy 4682 + │ args: jj status 4683 + ○ b968c3a55edb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4684 + │ next: 851991850ea8 -> editing 737ffbb53f06 4685 + │ args: jj next --edit 4686 + ○ c1f7278bf51d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4687 + │ next: 2ae3d1650045 -> editing 851991850ea8 4688 + │ args: jj next --edit 4689 + ○ 336e04763143 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4690 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 4691 + │ args: jj next --edit 4692 + ○ 2830430ace23 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4693 + │ snapshot working copy 4694 + │ args: jj log 4695 + ○ bcf95d116310 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4696 + │ prev: 02702cffec6e -> editing 2d353c7be390 4697 + │ args: jj prev --edit --color always 4698 + ○ 81ce387110f5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4699 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 4700 + │ args: jj prev --edit --color always 4701 + ○ 19483c9bbde4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4702 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 4703 + │ args: jj prev --edit --color always 4704 + ○ 700dcf548eb5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4705 + │ prev: 4599f3e54870 -> editing 7443d2cca1bc 4706 + │ args: jj prev --edit --color always 4707 + ○ bd3219e17f17 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4708 + │ new empty commit 4709 + │ args: jj new --color always 4710 + ○ 326a0f768a0f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4711 + │ next: 7b3325ebc782 -> editing 7443d2cca1bc 4712 + │ args: jj next --edit --color always 4713 + ○ 9335cee4f0eb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4714 + │ next: 02702cffec6e -> editing 7b3325ebc782 4715 + │ args: jj next --edit --color always 4716 + ○ 54395aeea5a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4717 + │ next: 2d353c7be390 -> editing 02702cffec6e 4718 + │ args: jj next --edit --color always 4719 + ○ 799491fe5f54 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4720 + │ next: d12586fdc502 -> editing 2d353c7be390 4721 + │ args: jj next --edit --color always 4722 + ○ a9ee3831d8b7 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4723 + │ next: d648d9dc91ca -> editing d12586fdc502 4724 + │ args: jj next --edit --color always 4725 + ○ 0d20d5291b43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4726 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 4727 + │ args: jj next --edit --color always 4728 + ○ fd857d02cebe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4729 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 4730 + │ args: jj next --edit --color always 4731 + ○ cc6ad1b31b82 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4732 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 4733 + │ args: jj next --edit --color always 4734 + ○ a6d6df6a92bd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4735 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 4736 + │ args: jj next --edit --color always 4737 + ○ 659eee66e19c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4738 + │ next: 584796aea9d8 -> editing 8e967a8ded42 4739 + │ args: jj next --edit --color always 4740 + ○ d0b5f2fe74b0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4741 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 4742 + │ args: jj prev --edit --color always 4743 + ○ 73451c217bbf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4744 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 4745 + │ args: jj prev --edit --color always 4746 + ○ 93a1975e4a2b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4747 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 4748 + │ args: jj prev --edit --color always 4749 + ○ 77a8d5a85c01 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4750 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 4751 + │ args: jj prev --edit --color always 4752 + ○ 6aed2e405d8a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4753 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 4754 + │ args: jj prev --edit --color always 4755 + ○ 9a2468dda98b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4756 + │ prev: d12586fdc502 -> editing d648d9dc91ca 4757 + │ args: jj prev --edit --color always 4758 + ○ a9845c154b61 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4759 + │ prev: 2d353c7be390 -> editing d12586fdc502 4760 + │ args: jj prev --edit --color always 4761 + ○ 26b16d4d329d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4762 + │ prev: 02702cffec6e -> editing 2d353c7be390 4763 + │ args: jj prev --edit --color always 4764 + ○ 9e639bf10687 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4765 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 4766 + │ args: jj prev --edit --color always 4767 + ○ e75938ad06be eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4768 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 4769 + │ args: jj prev --edit --color always 4770 + ○ 154d18ff4be3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4771 + │ next: 7b3325ebc782 -> editing 7443d2cca1bc 4772 + │ args: jj next --edit --color always 4773 + ○ 97611ed444be eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4774 + │ next: 02702cffec6e -> editing 7b3325ebc782 4775 + │ args: jj next --edit --color always 4776 + ○ d326b076c178 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4777 + │ next: 2d353c7be390 -> editing 02702cffec6e 4778 + │ args: jj next --edit --color always 4779 + ○ 229ff65b11e9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4780 + │ next: d12586fdc502 -> editing 2d353c7be390 4781 + │ args: jj next --edit --color always 4782 + ○ f0efd6a397b3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4783 + │ prev: 2d353c7be390 -> editing d12586fdc502 4784 + │ args: jj prev --edit --color always 4785 + ○ 65ca5a954b7f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4786 + │ prev: 02702cffec6e -> editing 2d353c7be390 4787 + │ args: jj prev --edit --color always 4788 + ○ 48a7330a503b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4789 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 4790 + │ args: jj prev --edit --color always 4791 + ○ 059537c13271 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4792 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 4793 + │ args: jj prev --edit --color always 4794 + ○ 6762f0792516 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4795 + │ prev: c83ac2518973 -> editing 7443d2cca1bc 4796 + │ args: jj prev --edit --color always 4797 + ○ 35f7aeb9dbee eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 4798 + │ commit 4f46a9a3b714fdcad2ea83e60713b3910bd9925f 4799 + │ args: jj commit -m msg --color always 4800 + ○ 92128570ca7b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4801 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 4802 + │ args: jj next --edit --color always 4803 + ○ 28a4507815a4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4804 + │ next: 02702cffec6e -> editing 7b3325ebc782 4805 + │ args: jj next --edit --color always 4806 + ○ 890c5cabbbd5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4807 + │ next: 2d353c7be390 -> editing 02702cffec6e 4808 + │ args: jj next --edit --color always 4809 + ○ 724d8c1c8a0d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4810 + │ next: d12586fdc502 -> editing 2d353c7be390 4811 + │ args: jj next --edit --color always 4812 + ○ d1c7cc57a47f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4813 + │ next: d648d9dc91ca -> editing d12586fdc502 4814 + │ args: jj next --edit --color always 4815 + ○ c6a356814e90 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4816 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 4817 + │ args: jj next --edit --color always 4818 + ○ ca3f25829ea6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4819 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 4820 + │ args: jj next --edit --color always 4821 + ○ a7bfdfcb356a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4822 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 4823 + │ args: jj next --edit --color always 4824 + ○ 5487d1ef59a5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4825 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 4826 + │ args: jj prev --edit --color always 4827 + ○ 1488736338c7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4828 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 4829 + │ args: jj prev --edit --color always 4830 + ○ 4d5f07a1af43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4831 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 4832 + │ args: jj prev --edit --color always 4833 + ○ dd29242c3f33 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4834 + │ prev: d12586fdc502 -> editing d648d9dc91ca 4835 + │ args: jj prev --edit --color always 4836 + ○ af3199d24afe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4837 + │ prev: 2d353c7be390 -> editing d12586fdc502 4838 + │ args: jj prev --edit --color always 4839 + ○ 5f5e018d1fd1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4840 + │ prev: 02702cffec6e -> editing 2d353c7be390 4841 + │ args: jj prev --edit --color always 4842 + ○ d9f802be5cfb eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4843 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 4844 + │ args: jj prev --edit --color always 4845 + ○ abaf2ad6b6dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4846 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 4847 + │ args: jj prev --edit --color always 4848 + ○ 2541871b0c06 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4849 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 4850 + │ args: jj next --edit --color always 4851 + ○ 272b10b01813 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4852 + │ next: 02702cffec6e -> editing 7b3325ebc782 4853 + │ args: jj next --edit --color always 4854 + ○ fe99f6725576 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4855 + │ next: 2d353c7be390 -> editing 02702cffec6e 4856 + │ args: jj next --edit --color always 4857 + ○ 4b0e484fc47c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4858 + │ prev: 02702cffec6e -> editing 2d353c7be390 4859 + │ args: jj prev --edit --color always 4860 + ○ dc4839f675dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4861 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 4862 + │ args: jj prev --edit --color always 4863 + ○ e559ab536ad3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4864 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 4865 + │ args: jj prev --edit --color always 4866 + ○ 466323d191fa eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4867 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 4868 + │ args: jj next --edit --color always 4869 + ○ dc46a3d722ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4870 + │ next: 02702cffec6e -> editing 7b3325ebc782 4871 + │ args: jj next --edit --color always 4872 + ○ ee8bc69093a7 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4873 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 4874 + │ args: jj prev --edit --color always 4875 + ○ 703e4cb33297 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4876 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 4877 + │ args: jj prev --edit --color always 4878 + ○ 79548909f1d8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4879 + │ prev: 5e12535fc62e -> editing 4f46a9a3b714 4880 + │ args: jj prev --edit --color always 4881 + ○ 4062e885a791 eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 4882 + │ commit b30ff64921da4b2972e4493d039b6549cec96ffb 4883 + │ args: jj commit -m 'hello this is my message to you :) ' --color always 4884 + ○ 2cf737c2954d eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 4885 + │ commit 9cf52a9c549e7c3b16dded8a6f78bb354a3b62e5 4886 + │ args: jj commit -m aorsietnaoriestnoaiernstoaienrstoieanrostieanstoiaernstoiaenrstoienaorisentoaiesnrtoairesntoaiernstoieanrsotieanrsotienaoriesntoiaenrsotien --color always 4887 + ○ c5affee8b149 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4888 + │ commit f387f2b17733e7873f03c6c3bb40809e0075e667 4889 + │ args: jj commit -m 'hello this is my special box' --color always 4890 + ○ bea5432fd07b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4891 + │ commit 2aa53e699ccfb2f3ae9e7f880f0c59bfbc9567a3 4892 + │ args: jj commit -m 'this is my message :)' --color always 4893 + ○ 7deffc5d3758 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4894 + │ commit f08821057c490dc735b3afb66ec1ff13f6939340 4895 + │ args: jj commit -m 'message is centered successfully yay' --color always 4896 + ○ 5c45e9b5f29b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4897 + │ commit 24f20c3ec9492384fcd100013d3901a6483c477a 4898 + │ args: jj commit -m heyqqCq --color always 4899 + ○ e420cbd54c0a eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4900 + │ new empty commit 4901 + │ args: jj new --color always 4902 + ○ d10977dd23a1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4903 + │ new empty commit 4904 + │ args: jj new --color always 4905 + ○ 9763e9ec3d90 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4906 + │ commit cba27c8d1e154cc67c0aa9606ea578635187e1cb 4907 + │ args: jj commit -m 'message ' --color always 4908 + ○ 36b32fa3461f eli@eli-nixos-xps 3 months ago, lasted 5 milliseconds 4909 + │ commit ab22d4a9f486f28f45ab900bc29fd5c4b9094b51 4910 + │ args: jj commit -m 'hello this is a box' --color always 4911 + ○ 939266a0e6a0 eli@eli-nixos-xps 3 months ago, lasted 6 milliseconds 4912 + │ commit ec2f5045174e0f48baec7e3879f227ebc244c9c8 4913 + │ args: jj commit -m 'uy;yu;yu;yu' --color always 4914 + ○ b576316b8c25 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 4915 + │ new empty commit 4916 + │ args: jj new --color always 4917 + ○ 4acc65804797 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4918 + │ next: 529712756e2c -> editing 812a118be9e4 4919 + │ args: jj next --edit --color always 4920 + ○ 45a920b402a6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4921 + │ next: c3e259d4c40f -> editing 529712756e2c 4922 + │ args: jj next --edit --color always 4923 + ○ fc6952b1d168 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4924 + │ prev: 529712756e2c -> editing c3e259d4c40f 4925 + │ args: jj prev --edit --color always 4926 + ○ c4d3e6aab846 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4927 + │ prev: 812a118be9e4 -> editing 529712756e2c 4928 + │ args: jj prev --edit --color always 4929 + ○ ea455132406a eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4930 + │ next: 529712756e2c -> editing 812a118be9e4 4931 + │ args: jj next --edit --color always 4932 + ○ 4dd75d840609 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4933 + │ next: c3e259d4c40f -> editing 529712756e2c 4934 + │ args: jj next --edit --color always 4935 + ○ b813b95ab6fe eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4936 + │ prev: 529712756e2c -> editing c3e259d4c40f 4937 + │ args: jj prev --edit --color always 4938 + ○ 5090c4380409 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4939 + │ next: c3e259d4c40f -> editing 529712756e2c 4940 + │ args: jj next --edit --color always 4941 + ○ b6e907371166 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4942 + │ prev: 529712756e2c -> editing c3e259d4c40f 4943 + │ args: jj prev --edit --color always 4944 + ○ d089e7168df3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4945 + │ prev: 812a118be9e4 -> editing 529712756e2c 4946 + │ args: jj prev --edit --color always 4947 + ○ ff679449c3fe eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4948 + │ next: 529712756e2c -> editing 812a118be9e4 4949 + │ args: jj next --edit --color always 4950 + ○ 3432aeaa65cc eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 4951 + │ prev: 812a118be9e4 -> editing 529712756e2c 4952 + │ args: jj prev --edit --color always 4953 + ○ ed7c0142344c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4954 + │ next: 529712756e2c -> editing 812a118be9e4 4955 + │ args: jj next --edit --color always 4956 + ○ 9e5d19c832a1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4957 + │ next: c3e259d4c40f -> editing 529712756e2c 4958 + │ args: jj next --edit --color always 4959 + ○ 07c0d2fa4c26 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4960 + │ prev: 529712756e2c -> editing c3e259d4c40f 4961 + │ args: jj prev --edit --color always 4962 + ○ ff3c98e1f094 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4963 + │ prev: 812a118be9e4 -> editing 529712756e2c 4964 + │ args: jj prev --edit --color always 4965 + ○ 7701ea326a98 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4966 + │ next: 529712756e2c -> editing 812a118be9e4 4967 + │ args: jj next --edit --color always 4968 + ○ 648842226533 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4969 + │ next: c3e259d4c40f -> editing 529712756e2c 4970 + │ args: jj next --edit --color always 4971 + ○ b3efc9158284 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4972 + │ prev: 529712756e2c -> editing c3e259d4c40f 4973 + │ args: jj prev --edit --color always 4974 + ○ b30db7028cb0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4975 + │ prev: 812a118be9e4 -> editing 529712756e2c 4976 + │ args: jj prev --edit --color always 4977 + ○ 58f8f35f0c59 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4978 + │ next: 529712756e2c -> editing 812a118be9e4 4979 + │ args: jj next --edit --color always 4980 + ○ 3e337184c006 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4981 + │ prev: 812a118be9e4 -> editing 529712756e2c 4982 + │ args: jj prev --edit --color always 4983 + ○ 6837e102ec2d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4984 + │ next: 529712756e2c -> editing 812a118be9e4 4985 + │ args: jj next --edit --color always 4986 + ○ 74fe32ec91bb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4987 + │ prev: 812a118be9e4 -> editing 529712756e2c 4988 + │ args: jj prev --edit --color always 4989 + ○ 1cdd83d13b8b eli@eli-nixos-xps 3 months ago, lasted 26 seconds 4990 + │ Resolve conflicts in commit 89812fd9fe519674921bc7a055c3fbfdb6627c53 4991 + │ args: jj resolve 4992 + ○ 8b77e307548c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4993 + │ next: 529712756e2c -> editing 89812fd9fe51 4994 + │ args: jj next --edit --color always 4995 + ○ 865dd48a5308 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 4996 + │ prev: 89812fd9fe51 -> editing 529712756e2c 4997 + │ args: jj prev --edit --color always 4998 + ○ e3d74708f7fa eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 4999 + │ next: 529712756e2c -> editing 89812fd9fe51 5000 + │ args: jj next --edit --color always 5001 + ○ 8044b5f8756f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5002 + │ prev: 89812fd9fe51 -> editing 529712756e2c 5003 + │ args: jj prev --edit --color always 5004 + ○ f891c7dedbd5 eli@eli-nixos-xps 3 months ago, lasted 14 seconds 5005 + │ unsquash commit 4e7f1d7c6a19ceb88be8ade764618ade88f4e3c6 5006 + │ args: jj unsquash -i 5007 + ○ 26a792a10ede eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5008 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 5009 + │ args: jj next --edit --color always 5010 + ○ 9b33fe9b04cf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5011 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 5012 + │ args: jj prev --edit --color always 5013 + ○ 47116a073337 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5014 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 5015 + │ args: jj next --edit --color always 5016 + ○ 3c883cc7eb68 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5017 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 5018 + │ args: jj prev --edit --color always 5019 + ○ bac5b3cb41da eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5020 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 5021 + │ args: jj next --edit --color always 5022 + ○ 94dd56d26bdd eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5023 + │ next: c3e259d4c40f -> editing 52a595a66023 5024 + │ args: jj next --edit --color always 5025 + ○ b1407ca74bf5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5026 + │ prev: 52a595a66023 -> editing c3e259d4c40f 5027 + │ args: jj prev --edit --color always 5028 + ○ 189250d7ae78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5029 + │ next: c3e259d4c40f -> editing 52a595a66023 5030 + │ args: jj next --edit --color always 5031 + ○ 9def8b9728e0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5032 + │ prev: 52a595a66023 -> editing c3e259d4c40f 5033 + │ args: jj prev --edit --color always 5034 + ○ 7473fe0709ad eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5035 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 5036 + │ args: jj prev --edit --color always 5037 + ○ f77cc3de0175 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5038 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 5039 + │ args: jj next --edit --color always 5040 + ○ d8a035ab73d8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5041 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 5042 + │ args: jj prev --edit --color always 5043 + ○ 7e9c52564881 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5044 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 5045 + │ args: jj next --edit --color always 5046 + ○ ea5d1667d036 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5047 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 5048 + │ args: jj prev --edit --color always 5049 + ○ c662942c1581 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5050 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 5051 + │ args: jj next --edit --color always 5052 + ○ aabb0cc3448d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5053 + │ next: c3e259d4c40f -> editing 52a595a66023 5054 + │ args: jj next --edit --color always 5055 + ○ 76e6780889f2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5056 + │ prev: 52a595a66023 -> editing c3e259d4c40f 5057 + │ args: jj prev --edit --color always 5058 + ○ 4ade63236eaf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5059 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 5060 + │ args: jj prev --edit --color always 5061 + ○ 5acecc077b14 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5062 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 5063 + │ args: jj next --edit --color always 5064 + ○ 4a08b9a3825c eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 5065 + │ snapshot working copy 5066 + │ args: jj show --color always 5067 + ○ 46eee48a6644 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 5068 + │ snapshot working copy 5069 + │ args: jj show --color always 5070 + ○ 53df8b08e15c eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 5071 + │ snapshot working copy 5072 + │ args: jj show --color always 5073 + ○ 96cddd289069 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5074 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5075 + │ args: jj prev --edit --color always 5076 + ○ b2a73f7bef1c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5077 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5078 + │ args: jj next --edit --color always 5079 + ○ 7fbf3b8537b9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5080 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5081 + │ args: jj prev --edit --color always 5082 + ○ dc12fa78fd71 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5083 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5084 + │ args: jj next --edit --color always 5085 + ○ 2536ad8b1986 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5086 + │ next: c3e259d4c40f -> editing 521c21d7e342 5087 + │ args: jj next --edit --color always 5088 + ○ d50789f34158 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5089 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5090 + │ args: jj prev --edit --color always 5091 + ○ b62287a0dd09 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 5092 + │ next: c3e259d4c40f -> editing 521c21d7e342 5093 + │ args: jj next --edit --color always 5094 + ○ 2860cf74f393 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5095 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5096 + │ args: jj prev --edit --color always 5097 + ○ 1e7781ebaf4b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5098 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5099 + │ args: jj prev --edit --color always 5100 + ○ 66eaf786be63 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 5101 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5102 + │ args: jj next --edit --color always 5103 + ○ bf1a2d5cc2d0 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5104 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5105 + │ args: jj prev --edit --color always 5106 + ○ 1830b4a30f34 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5107 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5108 + │ args: jj next --edit --color always 5109 + ○ 9a3e1dcb4acf eli@eli-nixos-xps 4 months ago, lasted 8 milliseconds 5110 + │ next: c3e259d4c40f -> editing 521c21d7e342 5111 + │ args: jj next --edit --color always 5112 + ○ 288e73db4714 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5113 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5114 + │ args: jj prev --edit --color always 5115 + ○ 8b9689bfc71a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5116 + │ next: c3e259d4c40f -> editing 521c21d7e342 5117 + │ args: jj next --edit --color always 5118 + ○ cce7d2d3304e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5119 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5120 + │ args: jj prev --edit --color always 5121 + ○ 0bded7ceeab2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5122 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5123 + │ args: jj prev --edit --color always 5124 + ○ 2fb76a244fb9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5125 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5126 + │ args: jj next --edit --color always 5127 + ○ 02652732f2b8 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5128 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5129 + │ args: jj prev --edit --color always 5130 + ○ 9d482485788b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5131 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5132 + │ args: jj next --edit --color always 5133 + ○ ddf0d71786dd eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5134 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5135 + │ args: jj prev --edit --color always 5136 + ○ 1eb5e9015218 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5137 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5138 + │ args: jj next --edit --color always 5139 + ○ 3c72afc3689a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5140 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5141 + │ args: jj prev --edit --color always 5142 + ○ 941686f7023e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5143 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5144 + │ args: jj next --edit --color always 5145 + ○ 1e57b6430fe2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5146 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5147 + │ args: jj prev --edit --color always 5148 + ○ c9be0ac314d7 eli@eli-nixos-xps 4 months ago, lasted 2 milliseconds 5149 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5150 + │ args: jj next --edit --color always 5151 + ○ acddfc4548e6 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5152 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5153 + │ args: jj prev --edit --color always 5154 + ○ 21114d1d41b6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5155 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5156 + │ args: jj next --edit --color always 5157 + ○ 625c40d0ae20 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5158 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5159 + │ args: jj prev --edit --color always 5160 + ○ 0f68dc615fda eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5161 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5162 + │ args: jj next --edit --color always 5163 + ○ 70921283c4d7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5164 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5165 + │ args: jj prev --edit --color always 5166 + ○ 0cd7f66b0653 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5167 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5168 + │ args: jj next --edit --color always 5169 + ○ 2d64a9b77df5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5170 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5171 + │ args: jj prev --edit --color always 5172 + ○ be1686f17364 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5173 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5174 + │ args: jj next --edit --color always 5175 + ○ 188e1b894a12 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5176 + │ next: c3e259d4c40f -> editing 521c21d7e342 5177 + │ args: jj next --edit --color always 5178 + ○ 6a1b77d070a4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5179 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5180 + │ args: jj prev --edit --color always 5181 + ○ 60bf96d15292 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5182 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5183 + │ args: jj prev --edit --color always 5184 + ○ 62d723ce7e9f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5185 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5186 + │ args: jj next --edit --color always 5187 + ○ ff1918f8c2e6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5188 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5189 + │ args: jj prev --edit --color always 5190 + ○ 4613299bb4f8 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5191 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5192 + │ args: jj next --edit --color always 5193 + ○ cb6eafe5f21e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5194 + │ next: c3e259d4c40f -> editing 521c21d7e342 5195 + │ args: jj next --edit --color always 5196 + ○ 265ec7e3d2f5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5197 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5198 + │ args: jj prev --edit --color always 5199 + ○ fbb272511232 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5200 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5201 + │ args: jj prev --edit --color always 5202 + ○ bb7005782ef8 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5203 + │ prev: ec72e9beb82b -> editing 2e8df5e76d5d 5204 + │ args: jj prev --edit --color always 5205 + ○ 07102904b180 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5206 + │ next: 7e7636eeb1af -> 2e8df5e76d5d 5207 + │ args: jj next --color always 5208 + ○ fdb5d068e295 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5209 + │ next: e9f6fe737058 -> 521c21d7e342 5210 + │ args: jj next --color always 5211 + ○ c9525b534aca eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5212 + │ next: 626e2b4b3c96 -> c3e259d4c40f 5213 + │ args: jj next --color always 5214 + ○ 93fd2ca99e91 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5215 + │ prev: c75315664272 -> 000000000000 5216 + │ args: jj prev --color always 5217 + ○ 96e53e4b0e04 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5218 + │ prev: 2e8df5e76d5d -> c3e259d4c40f 5219 + │ args: jj prev --color always 5220 + ○ a3e39073aa69 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5221 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5222 + │ args: jj next --edit --color always 5223 + ○ e750cff692c2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5224 + │ next: c3e259d4c40f -> editing 521c21d7e342 5225 + │ args: jj next --edit --color always 5226 + ○ 54121e08e440 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5227 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5228 + │ args: jj prev --edit --color always 5229 + ○ 5ca36e9b53bf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5230 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5231 + │ args: jj prev --edit --color always 5232 + ○ 6ec1aa19a2fa eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5233 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5234 + │ args: jj next --edit --color always 5235 + ○ a9d79456cf8d eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5236 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5237 + │ args: jj prev --edit --color always 5238 + ○ cb9d546b502f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5239 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5240 + │ args: jj next --edit --color always 5241 + ○ 14629b4019ec eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5242 + │ next: c3e259d4c40f -> editing 521c21d7e342 5243 + │ args: jj next --edit --color always 5244 + ○ 8930e8174138 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5245 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5246 + │ args: jj prev --edit --color always 5247 + ○ 298017db399e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5248 + │ next: c3e259d4c40f -> editing 521c21d7e342 5249 + │ args: jj next --edit --color always 5250 + ○ 8827ed343b41 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5251 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5252 + │ args: jj prev --edit --color always 5253 + ○ ec5f272eccd5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5254 + │ next: c3e259d4c40f -> editing 521c21d7e342 5255 + │ args: jj next --edit --color always 5256 + ○ 303f15a70400 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5257 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5258 + │ args: jj prev --edit --color always 5259 + ○ 3859b383769e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5260 + │ next: c3e259d4c40f -> editing 521c21d7e342 5261 + │ args: jj next --edit --color always 5262 + ○ 79c25421c6d9 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5263 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5264 + │ args: jj prev --edit --color always 5265 + ○ dc627b3c3795 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5266 + │ next: c3e259d4c40f -> editing 521c21d7e342 5267 + │ args: jj next --edit --color always 5268 + ○ 5a20d11d45e1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5269 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5270 + │ args: jj prev --edit --color always 5271 + ○ c10a13e84da0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5272 + │ next: c3e259d4c40f -> editing 521c21d7e342 5273 + │ args: jj next --edit --color always 5274 + ○ b305ee379579 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5275 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5276 + │ args: jj prev --edit --color always 5277 + ○ 24929ef49907 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5278 + │ next: c3e259d4c40f -> editing 521c21d7e342 5279 + │ args: jj next --edit --color always 5280 + ○ 1bf9595cca4b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5281 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5282 + │ args: jj prev --edit --color always 5283 + ○ 62035b395f15 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5284 + │ next: c3e259d4c40f -> editing 521c21d7e342 5285 + │ args: jj next --edit --color always 5286 + ○ 7044696a7592 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5287 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5288 + │ args: jj prev --edit --color always 5289 + ○ e551be4ea804 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5290 + │ next: c3e259d4c40f -> editing 521c21d7e342 5291 + │ args: jj next --edit --color always 5292 + ○ 0e125b60c0ae eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5293 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5294 + │ args: jj prev --edit --color always 5295 + ○ b0de9fef53de eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5296 + │ next: c3e259d4c40f -> editing 521c21d7e342 5297 + │ args: jj next --edit --color always 5298 + ○ 5ca83175b430 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5299 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5300 + │ args: jj prev --edit --color always 5301 + ○ 70f020c9b338 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5302 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5303 + │ args: jj prev --edit --color always 5304 + ○ c9a30a1eb29a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5305 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5306 + │ args: jj next --edit --color always 5307 + ○ b21771f68b6b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5308 + │ next: c3e259d4c40f -> editing 521c21d7e342 5309 + │ args: jj next --edit --color always 5310 + ○ 74336ca3ded1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5311 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5312 + │ args: jj prev --edit --color always 5313 + ○ 0ece8c7daaf3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5314 + │ next: c3e259d4c40f -> editing 521c21d7e342 5315 + │ args: jj next --edit --color always 5316 + ○ 7b092b927800 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5317 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5318 + │ args: jj prev --edit --color always 5319 + ○ a812c85e447a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5320 + │ next: c3e259d4c40f -> editing 521c21d7e342 5321 + │ args: jj next --edit --color always 5322 + ○ 4e595ed0176b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5323 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5324 + │ args: jj prev --edit --color always 5325 + ○ 0e2a4b24272c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5326 + │ next: c3e259d4c40f -> editing 521c21d7e342 5327 + │ args: jj next --edit --color always 5328 + ○ 14c734dca028 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5329 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5330 + │ args: jj prev --edit --color always 5331 + ○ c7f02038a6a1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5332 + │ next: c3e259d4c40f -> editing 521c21d7e342 5333 + │ args: jj next --edit --color always 5334 + ○ a3ec5d8c505e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5335 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5336 + │ args: jj prev --edit --color always 5337 + ○ fa5c3595a0c5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5338 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5339 + │ args: jj prev --edit --color always 5340 + ○ a50c053607d9 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5341 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5342 + │ args: jj next --edit --color always 5343 + ○ 1550645799d8 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5344 + │ next: c3e259d4c40f -> editing 521c21d7e342 5345 + │ args: jj next --edit --color always 5346 + ○ 37b626086506 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5347 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5348 + │ args: jj prev --edit --color always 5349 + ○ b11a2b31d1fc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5350 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5351 + │ args: jj prev --edit --color always 5352 + ○ c76e2c1ba3d5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5353 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5354 + │ args: jj next --edit --color always 5355 + ○ ddae82c9c2b0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5356 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5357 + │ args: jj prev --edit --color always 5358 + ○ 4e4824142865 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5359 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5360 + │ args: jj next --edit --color always 5361 + ○ 59900065451e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5362 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5363 + │ args: jj prev --edit --color always 5364 + ○ 8c95241bd3de eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5365 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5366 + │ args: jj next --edit --color always 5367 + ○ 47b1b1650d83 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5368 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5369 + │ args: jj prev --edit --color always 5370 + ○ b1321c4dd3c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5371 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5372 + │ args: jj next --edit --color always 5373 + ○ 6c9c18c93f62 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5374 + │ next: c3e259d4c40f -> editing 521c21d7e342 5375 + │ args: jj next --edit --color always 5376 + ○ 5f5db1d8a732 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5377 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5378 + │ args: jj prev --edit --color always 5379 + ○ 0adf0f399fe6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5380 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5381 + │ args: jj prev --edit --color always 5382 + ○ eb2d1230ddab eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5383 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5384 + │ args: jj next --edit --color always 5385 + ○ 4fc71c8b882c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5386 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5387 + │ args: jj prev --edit --color always 5388 + ○ f1c9cb8377b5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5389 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5390 + │ args: jj next --edit --color always 5391 + ○ a499bf3496d5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5392 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5393 + │ args: jj prev --edit --color always 5394 + ○ 89dbc96c27f7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5395 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5396 + │ args: jj next --edit --color always 5397 + ○ 0e0eb171574f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5398 + │ next: c3e259d4c40f -> editing 521c21d7e342 5399 + │ args: jj next --edit --color always 5400 + ○ 3a339a49d855 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5401 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5402 + │ args: jj prev --edit --color always 5403 + ○ be038bce99ee eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5404 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5405 + │ args: jj prev --edit --color always 5406 + ○ c275a93a9fdf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5407 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5408 + │ args: jj next --edit --color always 5409 + ○ 1a162eec5853 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5410 + │ next: c3e259d4c40f -> editing 521c21d7e342 5411 + │ args: jj next --edit --color always 5412 + ○ a0553eceaf86 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5413 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5414 + │ args: jj prev --edit --color always 5415 + ○ f13ef21a91fd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5416 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5417 + │ args: jj prev --edit --color always 5418 + ○ 45555b272b38 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5419 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5420 + │ args: jj next --edit --color always 5421 + ○ 9a3d1cb3a616 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5422 + │ next: c3e259d4c40f -> editing 521c21d7e342 5423 + │ args: jj next --edit --color always 5424 + ○ b6acf5153748 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5425 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5426 + │ args: jj prev --edit --color always 5427 + ○ acc7561596ea eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5428 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5429 + │ args: jj prev --edit --color always 5430 + ○ 552c8cae9b4f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5431 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5432 + │ args: jj next --edit --color always 5433 + ○ d4ce5209c1ae eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5434 + │ next: c3e259d4c40f -> editing 521c21d7e342 5435 + │ args: jj next --edit --color always 5436 + ○ ee6a71692233 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5437 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5438 + │ args: jj prev --edit --color always 5439 + ○ eb1aff4779b9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5440 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5441 + │ args: jj prev --edit --color always 5442 + ○ bb7776dc84b3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5443 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 5444 + │ args: jj next --edit --color always 5445 + ○ cbb5b3dd8bbc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5446 + │ next: c3e259d4c40f -> editing 521c21d7e342 5447 + │ args: jj next --edit --color always 5448 + ○ 8cfc90db4225 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5449 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 5450 + │ args: jj prev --edit --color always 5451 + ○ 227d2056026b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5452 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 5453 + │ args: jj prev --edit --color always 5454 + ○ 3f2f9f0acdf2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5455 + │ snapshot working copy 5456 + │ args: jj log 5457 + ○ ce9b59ecd88f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5458 + │ snapshot working copy 5459 + │ args: jj log --color always 5460 + ○ bd500d890bdc eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5461 + │ commit 90f2e6343227cd1e1b548125720cfa540c1ea99b 5462 + │ args: jj commit -m 'coloured output doesn\'t crash' 5463 + ○ b6227f6ffda3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5464 + │ next: c3e259d4c40f -> editing 90f2e6343227 5465 + │ args: jj next --edit --color always 5466 + ○ 8dde3b915363 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5467 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5468 + │ args: jj prev --edit --color always 5469 + ○ db850233e2c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5470 + │ next: c3e259d4c40f -> editing 90f2e6343227 5471 + │ args: jj next --edit --color always 5472 + ○ cc9b8d8bd163 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5473 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5474 + │ args: jj prev --edit --color always 5475 + ○ 76658edd2e06 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5476 + │ next: c3e259d4c40f -> editing 90f2e6343227 5477 + │ args: jj next --edit --color always 5478 + ○ 08535b0a2712 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5479 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5480 + │ args: jj prev --edit --color always 5481 + ○ 2ea5ebd7e56b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5482 + │ next: c3e259d4c40f -> editing 90f2e6343227 5483 + │ args: jj next --edit 5484 + ○ 8ae69b1ed672 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5485 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5486 + │ args: jj prev --edit 5487 + ○ cf8779e0f3d4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5488 + │ next: c3e259d4c40f -> editing 90f2e6343227 5489 + │ args: jj next --edit 5490 + ○ ff800600031d eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5491 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5492 + │ args: jj prev --edit 5493 + ○ 338e61aff388 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5494 + │ next: c3e259d4c40f -> editing 90f2e6343227 5495 + │ args: jj next --edit 5496 + ○ c12bdbdc91e4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5497 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5498 + │ args: jj prev --edit 5499 + ○ 9c0e28d573e0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5500 + │ next: c3e259d4c40f -> editing 90f2e6343227 5501 + │ args: jj next --edit 5502 + ○ f9a529943492 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5503 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5504 + │ args: jj prev --edit 5505 + ○ f184bbd7591a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5506 + │ next: c3e259d4c40f -> editing 90f2e6343227 5507 + │ args: jj next --edit 5508 + ○ af7185cc0530 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5509 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5510 + │ args: jj prev --edit 5511 + ○ ff437a3c151f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5512 + │ next: c3e259d4c40f -> editing 90f2e6343227 5513 + │ args: jj next --edit 5514 + ○ 76c08bd4cd7e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5515 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5516 + │ args: jj prev --edit 5517 + ○ 71802ff474fe eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5518 + │ next: c3e259d4c40f -> editing 90f2e6343227 5519 + │ args: jj next --edit 5520 + ○ 6bbff410b809 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5521 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 5522 + │ args: jj prev --edit 5523 + ○ 74055f627673 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5524 + │ undo operation 37033e64433ec9ffeb78b8b2385317546db529f3e598bfac36841a82e26247bf6867dadcddc658ac4a600d1d3c893d7ef7e8900e6823d6e9f0ebdd5b4b5abad9 5525 + │ args: jj undo 5526 + ○ 37033e64433e eli@eli-nixos-xps 4 months ago, lasted 6 seconds 5527 + │ edit commit 90f2e6343227cd1e1b548125720cfa540c1ea99b 5528 + │ args: jj diffedit 5529 + ○ 5ff0b2824157 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5530 + │ snapshot working copy 5531 + │ args: jj diffedit 5532 + ○ 4fc1e13a19ff eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5533 + │ snapshot working copy 5534 + ○ 14424d5306c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5535 + │ undo operation 7dcfbc3780b280cc11bb2fb0d5cf9075b3f7fac3aac71059ebede06347dc7f8ef3799ecbbdf785ac8a9f0df052808bbdfbb6cb164ee7709bd443fdb6b2f878d7 5536 + │ args: jj undo 5537 + ○ 7dcfbc3780b2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5538 + │ undo operation 95b602744a8fe36708030676b2e1f40ee58f40cbb3e4beb523d0fd8da02d7b718cea7a72308154641afd811cbaa5188c4c68c9f2c6c273c401b01ddae7b889c8 5539 + │ args: jj undo 5540 + ○ 95b602744a8f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5541 + │ undo operation 72c1ec8c7d392bd9987f66baa8588e47db18fe62f9122925955838336a4e6d25810e1ce633490b04c5ce2441f734b09b237341a03aa07755ba03b17849fee228 5542 + │ args: jj undo 5543 + ○ 72c1ec8c7d39 eli@eli-nixos-xps 4 months ago, lasted 24 seconds 5544 + │ unsquash commit 0b23d59660dde14672186533f83410c817fe2253 5545 + │ args: jj unsquash 5546 + ○ c7dd5622e710 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5547 + │ edit commit 0b23d59660dde14672186533f83410c817fe2253 5548 + ○ 2b09d8e6834c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5549 + │ edit commit c3e259d4c40f5266866c071ebd0ae26ed345db8b 5550 + ○ 61ecf73f26dd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5551 + │ edit commit 0b23d59660dde14672186533f83410c817fe2253 5552 + ○ fe8405f4bb65 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5553 + │ undo operation ef2d82b718a7c7459a43bdd8165a187559d14b379a8290cf20f057d1de7adf07954c426dfbae3bc4475c714684c09ceabe2366de2d6f4446f623c9116c942132 5554 + │ args: jj undo 5555 + ○ ef2d82b718a7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5556 + │ unsquash commit 5c4af7c8dcc487218176b163a768f2d9dac7af94 5557 + │ args: jj unsquash 5558 + ○ 1102529644a1 eli@eli-nixos-xps 4 months ago, lasted 7 seconds 5559 + │ squash commits into 64547a51e86a41425f448e5d7cfbf8c0e8d0e850 5560 + │ args: jj squash 5561 + ○ da2252f9bf53 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5562 + │ next: 64547a51e86a -> editing f51e5ba830a7 5563 + │ args: jj next --edit 5564 + ○ f4c4048bf879 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5565 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5566 + │ args: jj prev --edit 5567 + ○ cd9dc6cc1075 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5568 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5569 + │ args: jj prev --edit 5570 + ○ a5184f545767 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5571 + │ next: f51e5ba830a7 -> editing a2072c652a16 5572 + │ args: jj next --edit 5573 + ○ 55b7036330ca eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5574 + │ next: 64547a51e86a -> editing f51e5ba830a7 5575 + │ args: jj next --edit 5576 + ○ df0cf200dd78 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5577 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5578 + │ args: jj prev --edit 5579 + ○ 2b0256951a63 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5580 + │ next: 64547a51e86a -> editing f51e5ba830a7 5581 + │ args: jj next --edit 5582 + ○ 99161323247e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5583 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5584 + │ args: jj prev --edit 5585 + ○ b63f9ee657b1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5586 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5587 + │ args: jj prev --edit 5588 + ○ a3be6b60cc83 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5589 + │ next: f51e5ba830a7 -> editing a2072c652a16 5590 + │ args: jj next --edit 5591 + ○ 1672dd057331 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5592 + │ next: 64547a51e86a -> editing f51e5ba830a7 5593 + │ args: jj next --edit 5594 + ○ 322e3e21b114 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5595 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5596 + │ args: jj prev --edit 5597 + ○ 2b91c9115816 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5598 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5599 + │ args: jj prev --edit 5600 + ○ d13b9782f928 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5601 + │ next: f51e5ba830a7 -> editing a2072c652a16 5602 + │ args: jj next --edit 5603 + ○ c06406de9bec eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5604 + │ next: 64547a51e86a -> editing f51e5ba830a7 5605 + │ args: jj next --edit 5606 + ○ 191f39b50a03 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5607 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5608 + │ args: jj prev --edit 5609 + ○ 7ddb6f9f7f7d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5610 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5611 + │ args: jj prev --edit 5612 + ○ e9fe8388c223 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5613 + │ next: f51e5ba830a7 -> editing a2072c652a16 5614 + │ args: jj next --edit 5615 + ○ 56320a7efdbf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5616 + │ next: 64547a51e86a -> editing f51e5ba830a7 5617 + │ args: jj next --edit 5618 + ○ 8683910c46cc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5619 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5620 + │ args: jj prev --edit 5621 + ○ 3228ecd65eed eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5622 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5623 + │ args: jj prev --edit 5624 + ○ bc86e91f8c45 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5625 + │ next: f51e5ba830a7 -> editing a2072c652a16 5626 + │ args: jj next --edit 5627 + ○ b14a7306430c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5628 + │ next: 64547a51e86a -> editing f51e5ba830a7 5629 + │ args: jj next --edit 5630 + ○ 19d12c365774 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5631 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5632 + │ args: jj prev --edit 5633 + ○ 091d4d50f84c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5634 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5635 + │ args: jj prev --edit 5636 + ○ 29827c5ab0a6 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5637 + │ next: f51e5ba830a7 -> editing a2072c652a16 5638 + │ args: jj next --edit 5639 + ○ 35f4390f3a70 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5640 + │ next: 64547a51e86a -> editing f51e5ba830a7 5641 + │ args: jj next --edit 5642 + ○ 13645836db4a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5643 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5644 + │ args: jj prev --edit 5645 + ○ dfcfae826731 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5646 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5647 + │ args: jj prev --edit 5648 + ○ 9d3ae4dfd316 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5649 + │ prev: c57d0697f3ae -> editing a2072c652a16 5650 + │ args: jj prev --edit 5651 + ○ eb127aefcc53 eli@eli-nixos-xps 4 months ago, lasted 10 milliseconds 5652 + │ next: caf7abf92a9c -> a2072c652a16 5653 + │ args: jj next 5654 + ○ f11f0cfc71ae eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5655 + │ next: 39a5a9614fd5 -> f51e5ba830a7 5656 + │ args: jj next 5657 + ○ 73862d6982de eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5658 + │ next: 4cbf3b07bf3d -> 64547a51e86a 5659 + │ args: jj next 5660 + ○ ade9498294ef eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5661 + │ prev: d4994ad7ce03 -> 000000000000 5662 + │ args: jj prev 5663 + ○ dd78e1c58afd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5664 + │ prev: a2072c652a16 -> 64547a51e86a 5665 + │ args: jj prev 5666 + ○ c79708df4de1 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5667 + │ next: f51e5ba830a7 -> editing a2072c652a16 5668 + │ args: jj next --edit 5669 + ○ 9b445ebb6437 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5670 + │ next: 64547a51e86a -> editing f51e5ba830a7 5671 + │ args: jj next --edit 5672 + ○ 871ec534bb1f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5673 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5674 + │ args: jj prev --edit 5675 + ○ 14c42d029fe4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5676 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5677 + │ args: jj prev --edit 5678 + ○ 87f675434e11 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5679 + │ next: f51e5ba830a7 -> editing a2072c652a16 5680 + │ args: jj next --edit 5681 + ○ 21c92e2c9f01 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5682 + │ next: 64547a51e86a -> editing f51e5ba830a7 5683 + │ args: jj next --edit 5684 + ○ 2409bfee4f6c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5685 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5686 + │ args: jj prev --edit 5687 + ○ dd19a36d22c7 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5688 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5689 + │ args: jj prev --edit 5690 + ○ 62f5810c773f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5691 + │ prev: 5ef01377ca95 -> editing a2072c652a16 5692 + │ args: jj prev --edit 5693 + ○ da7e56d58b3c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5694 + │ next: 151d99729d26 -> a2072c652a16 5695 + │ args: jj next 5696 + ○ 220709d07840 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5697 + │ next: 555dbf1a5cd9 -> f51e5ba830a7 5698 + │ args: jj next 5699 + ○ fa7978636887 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5700 + │ next: 39844045939a -> 64547a51e86a 5701 + │ args: jj next 5702 + ○ 81a2a721b4cd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5703 + │ prev: a8704a770ccb -> 000000000000 5704 + │ args: jj prev 5705 + ○ 0638337e8d02 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5706 + │ prev: b15bb146134a -> 64547a51e86a 5707 + │ args: jj prev 5708 + ○ 598662ae7891 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5709 + │ prev: 36c97ec52784 -> f51e5ba830a7 5710 + │ args: jj prev 5711 + ○ 74975067964a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5712 + │ next: 61f560878ce6 -> a2072c652a16 5713 + │ args: jj next 5714 + ○ f9865c28dfbf eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5715 + │ next: 8e95b7cbec8a -> f51e5ba830a7 5716 + │ args: jj next 5717 + ○ 155954502aeb eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5718 + │ next: dc8628ac7fb9 -> 64547a51e86a 5719 + │ args: jj next 5720 + ○ 6cb61099ba02 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5721 + │ prev: c46b7a59af90 -> 000000000000 5722 + │ args: jj prev 5723 + ○ cc6f33eb1752 eli@eli-nixos-xps 4 months ago, lasted 9 milliseconds 5724 + │ prev: a2072c652a16 -> 64547a51e86a 5725 + │ args: jj prev 5726 + ○ 8e1c59c3eec1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5727 + │ next: f51e5ba830a7 -> editing a2072c652a16 5728 + │ args: jj next --edit 5729 + ○ 9e3141f83a60 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5730 + │ next: 64547a51e86a -> editing f51e5ba830a7 5731 + │ args: jj next --edit 5732 + ○ 43bba422810f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5733 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5734 + │ args: jj prev --edit 5735 + ○ 3c5b99c130b4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5736 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5737 + │ args: jj prev --edit 5738 + ○ 8f2218e5bb63 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5739 + │ next: f51e5ba830a7 -> editing a2072c652a16 5740 + │ args: jj next --edit 5741 + ○ 523ea5b27511 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5742 + │ next: 64547a51e86a -> editing f51e5ba830a7 5743 + │ args: jj next --edit 5744 + ○ f958c12f5df4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5745 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5746 + │ args: jj prev --edit 5747 + ○ c2d6aa7af072 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5748 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5749 + │ args: jj prev --edit 5750 + ○ e1e751302fc2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5751 + │ next: f51e5ba830a7 -> editing a2072c652a16 5752 + │ args: jj next --edit 5753 + ○ 4062f3277d8b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5754 + │ next: 64547a51e86a -> editing f51e5ba830a7 5755 + │ args: jj next --edit 5756 + ○ 5741e220973b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5757 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 5758 + │ args: jj prev --edit 5759 + ○ babb19f96584 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5760 + │ prev: a2072c652a16 -> editing f51e5ba830a7 5761 + │ args: jj prev --edit 5762 + ○ f501c83a8861 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5763 + │ next: f51e5ba830a7 -> editing a2072c652a16 5764 + │ args: jj next --edit 5765 + ○ 1262f53eeed9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5766 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 5767 + ○ 4058d89dd0d3 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5768 + │ edit commit a2072c652a1632397e60893d00dce335e68d23db 5769 + ○ cdcdfb3b4076 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5770 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 5771 + ○ 32206ee89d15 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5772 + │ edit commit 64547a51e86a41425f448e5d7cfbf8c0e8d0e850 5773 + ○ f5ad5e5e25e7 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5774 + │ edit commit a2072c652a1632397e60893d00dce335e68d23db 5775 + ○ e33b2d6d28b9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5776 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 5777 + ○ fcbfae064d05 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5778 + │ prev: 2a579b88cc84 -> 64547a51e86a 5779 + │ args: jj prev 5780 + ○ a6688eaa5bfa eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5781 + │ prev: d2af1208fb95 -> f51e5ba830a7 5782 + │ args: jj prev 5783 + ○ 3f91609c5a9b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5784 + │ next: 588904613ee2 -> a2072c652a16 5785 + │ args: jj next 5786 + ○ 6fe7d9668d9a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5787 + │ next: 9a4dd50233bb -> f51e5ba830a7 5788 + │ args: jj next 5789 + ○ 55ad0592346f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5790 + │ next: 9810d90dfee7 -> 64547a51e86a 5791 + │ args: jj next 5792 + ○ aba55fc904ac eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5793 + │ prev: 50b4191124b3 -> 000000000000 5794 + │ args: jj prev 5795 + ○ 6cdd740bbd12 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5796 + │ next: 554e68636db9 -> 64547a51e86a 5797 + │ args: jj next 5798 + ○ 6c88d131b5bd eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5799 + │ prev: 535261cfc413 -> 000000000000 5800 + │ args: jj prev 5801 + ○ 8e0e50968c93 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5802 + │ prev: 823b477c9542 -> 64547a51e86a 5803 + │ args: jj prev 5804 + ○ 27c60b494456 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5805 + │ prev: 435c7c05ab27 -> f51e5ba830a7 5806 + │ args: jj prev 5807 + ○ ae4bd7ac3f86 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5808 + │ next: 3b6e49cd68f5 -> a2072c652a16 5809 + │ args: jj next 5810 + ○ ef00896e0c21 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5811 + │ next: c60e81ca444e -> f51e5ba830a7 5812 + │ args: jj next 5813 + ○ d96977f233d1 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5814 + │ next: e8507bb34355 -> 64547a51e86a 5815 + │ args: jj next 5816 + ○ 7bde8707bb1a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5817 + │ prev: 065946532d85 -> 000000000000 5818 + │ args: jj prev 5819 + ○ 4b8d268b7cbf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5820 + │ prev: 0fe70a6f26e1 -> 64547a51e86a 5821 + │ args: jj prev 5822 + ○ 44d1ab3c4a9f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5823 + │ prev: 83fa2287b4dd -> f51e5ba830a7 5824 + │ args: jj prev 5825 + ○ 8120b0742e20 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5826 + │ next: c5a2fbf8234f -> a2072c652a16 5827 + │ args: jj next 5828 + ○ 2aab219c506a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5829 + │ next: c8a615582bab -> f51e5ba830a7 5830 + │ args: jj next 5831 + ○ 06c63230bc24 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5832 + │ next: c86c2ee7e6ec -> 64547a51e86a 5833 + │ args: jj next 5834 + ○ 1f2aea1ec600 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5835 + │ prev: e8800a74d093 -> 000000000000 5836 + │ args: jj prev 5837 + ○ f1254e69306d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5838 + │ prev: 82b3d3a6987c -> 64547a51e86a 5839 + │ args: jj prev 5840 + ○ 843ff0a62d5a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5841 + │ prev: 1be6b4c9df74 -> f51e5ba830a7 5842 + │ args: jj prev 5843 + ○ 40ccea6d1e1b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5844 + │ next: aa9ce0dae6c8 -> a2072c652a16 5845 + │ args: jj next 5846 + ○ cfbf87cc77c2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5847 + │ next: 33b8af188493 -> f51e5ba830a7 5848 + │ args: jj next 5849 + ○ 65399009038a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5850 + │ next: c1191b2985df -> 64547a51e86a 5851 + │ args: jj next 5852 + ○ 20851e25f4d4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5853 + │ prev: d6b537f80f8f -> 000000000000 5854 + │ args: jj prev 5855 + ○ 846c128d9cde eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5856 + │ prev: a9664e6f8ac3 -> 64547a51e86a 5857 + │ args: jj prev 5858 + ○ 1dd7ced8579c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5859 + │ prev: ef63a727a961 -> f51e5ba830a7 5860 + │ args: jj prev 5861 + ○ f56cc38fe954 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5862 + │ next: e2cbacd9c678 -> a2072c652a16 5863 + │ args: jj next 5864 + ○ 49a42d91d0e3 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5865 + │ next: 0552920ed3df -> f51e5ba830a7 5866 + │ args: jj next 5867 + ○ a25154bf44f2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5868 + │ next: 9d86882ee61c -> 64547a51e86a 5869 + │ args: jj next 5870 + ○ 1dcde0f1715d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5871 + │ prev: 8cc8fd810b07 -> 000000000000 5872 + │ args: jj prev 5873 + ○ e5634c0f1e40 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5874 + │ prev: 6c87d695c928 -> 64547a51e86a 5875 + │ args: jj prev 5876 + ○ 20916278b671 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5877 + │ prev: 58948485c266 -> f51e5ba830a7 5878 + │ args: jj prev 5879 + ○ fb85019b5ac5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5880 + │ next: 447e56e222ff -> a2072c652a16 5881 + │ args: jj next 5882 + ○ 2cef60a92165 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5883 + │ prev: 21c27850c6c5 -> f51e5ba830a7 5884 + │ args: jj prev 5885 + ○ f30c326099f4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5886 + │ commit 916b45f151ea0e1d7fc957aa3b73a36b27c4412b 5887 + │ args: jj commit -m remove-hi2 5888 + ○ 10ab3b46b3a4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5889 + │ snapshot working copy 5890 + │ args: jj commit -m remove-hi2 5891 + ○ 7c77e8d8c00d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5892 + │ commit cc1302d6212a7278c448c19e55a2b6b071a1f528 5893 + │ args: jj commit -m hi2 5894 + ○ 5a28b20206ec eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5895 + │ snapshot working copy 5896 + │ args: jj commit -m hi2 5897 + ○ c34268584efe eli@eli-nixos-xps 4 months ago, lasted 2 milliseconds 5898 + │ commit f0b286a7aca9ad647c597793c629037db53f8a0a 5899 + │ args: jj commit -m hi 5900 + ○ 424b51f2ffff eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5901 + │ snapshot working copy 5902 + │ args: jj commit -m hi 5903 + ○ 130c403d1f1a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 5904 + │ add workspace 'default' 5905 + ○ 9b1addb6dfde eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 5906 + │ initialize repo 5907 + ○ 000000000000 root() 5908 + @ b258b22536d6 eli@eli-nixos-xps now, lasted 14 milliseconds 5909 + │ snapshot working copy 5910 + │ args: jj op log 5911 + ○ 57d4291a2076 eli@eli-nixos-xps 1 second ago, lasted 5 milliseconds 5912 + │ snapshot working copy 5913 + │ args: jj op log 5914 + ○ 9205cf08044f eli@eli-nixos-xps 7 seconds ago, lasted 12 milliseconds 5915 + │ snapshot working copy 5916 + │ args: jj op log 5917 + ○ 460252461519 eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 5918 + │ snapshot working copy 5919 + │ args: jj log '\'\'' --color never 5920 + ○ 964ae29c7913 eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 5921 + │ squash commits into a0ce6fa0be8e64263eadcad52b75a00a18a8885b 5922 + │ args: jj squash -u --keep-emptied --from ysqoykszlsnxrywolxlqkoymyvpqlvlk --into ysqoykszlsnxrywolxlqkoymyvpqlvlk- out --color always 5923 + ○ bba8e8d57c47 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 5924 + │ next: 2363ae5ab231 -> editing a0ce6fa0be8e 5925 + │ args: jj next --color always 5926 + ○ 7cb2c2e8a585 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 5927 + │ prev: a0ce6fa0be8e -> editing 2363ae5ab231 5928 + │ args: jj prev --color always 5929 + ○ 335ba3266871 eli@eli-nixos-xps 2 weeks ago, lasted 6 milliseconds 5930 + │ squash commits into b338bc8dc0c21b91b32a44f623c605d71b320ad2 5931 + │ args: jj squash -u --keep-emptied --from qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --into 'qtosxvrzslqvtlqvtqknmwrnkvwwxtxv+' out --color always 5932 + ○ e9e214594767 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 5933 + │ squash commits into 53d1cc4fa2102e8b979b2cb1afc47bc94d6706ce 5934 + │ args: jj squash -u --keep-emptied --from ttnnqpsnpmzyzyknxuyulowqupkuosln --into rp other.txt --color always 5935 + ○ ed1435a56fea eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 5936 + │ squash commits into 0ed6f400a7fe9f18bd6be9191566b843feeb3de8 5937 + │ args: jj squash -u --from quylxlopoutqqnnmvqnkvonqorumqlmr --into tt other.txt --color always 5938 + ○ 66d14904c141 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 5939 + │ squash commits into 67658784491c5587b0540232d5c8568e7144783c 5940 + │ args: jj squash -u --from qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --into qu other.txt --color always 5941 + ○ 5eeb2c173e09 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 5942 + │ snapshot working copy 5943 + │ args: jj log --color always 5944 + ○ 09dc515a1cc8 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 5945 + │ edit commit bf02b5576646f44cf67abc49b67f4b45a42097ef 5946 + │ args: jj edit qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --color always 5947 + ○ a995cd747985 eli@eli-nixos-xps 2 weeks ago, lasted 2 milliseconds 5948 + │ squash commits into 1cfd1811b6dcadb6acd9477bc12819199e8e3a0e 5949 + │ args: jj squash -u --from npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --into qt out --color always 5950 + ○ 56762757775f eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 5951 + │ edit commit 67658784491c5587b0540232d5c8568e7144783c 5952 + │ args: jj edit quylxlopoutqqnnmvqnkvonqorumqlmr --color always 5953 + ○ 29c7a360dccc eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 5954 + │ next: 3bda68c2a942 -> 693b4825353b 5955 + │ args: jj next --color always 5956 + ○ 6be9eb402e9b eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 5957 + │ next: a438c4f17590 -> d91f530fb94d 5958 + │ args: jj next --color always 5959 + ○ 9e6438c6722d eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 5960 + │ next: 5009a23d4bdd -> 1cfd1811b6dc 5961 + │ args: jj next --color always 5962 + ○ 0c8393d14206 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 5963 + │ prev: 906d4922d561 -> 67658784491c 5964 + │ args: jj prev --color always 5965 + ○ 98c9055f93b0 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 5966 + │ new empty commit 5967 + │ args: jj new qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --color always 5968 + ○ 3219ec9a8351 eli@eli-nixos-xps 2 weeks ago, lasted 5 milliseconds 5969 + │ squash commits into 7ef1b7744065cc261eb1026aed0e1407fe422de9 5970 + │ args: jj squash -u --from oyzsrxumlmpqkkstmvxvrpqoxlkyworx --into 'oyzsrxumlmpqkkstmvxvrpqoxlkyworx+' out --color always 5971 + ○ b5e11fc618de eli@eli-nixos-xps 2 weeks ago, lasted 6 milliseconds 5972 + │ squash commits into 3087be21cfbf5ad78bb1f771dd6523ef8d7562b8 5973 + │ args: jj squash -u --from kzywtkmuupzznplpprrykuvlwmkqmrvr --into 'kzywtkmuupzznplpprrykuvlwmkqmrvr+' out --color always 5974 + ○ 01271a3c89ac eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 5975 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 5976 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 5977 + ○ fd0e6b1507f0 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 5978 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 5979 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 5980 + ○ 7dc6666b9f38 eli@eli-nixos-xps 2 weeks ago, lasted 10 milliseconds 5981 + │ new empty commit 5982 + │ args: jj new -r kzywtkmuupzznplpprrykuvlwmkqmrvr --color always 5983 + ○ 248099eb8db7 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 5984 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 5985 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 5986 + ○ 83a60fc53360 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 5987 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 5988 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 5989 + ○ 37e031891dc1 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 5990 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 5991 + │ args: jj edit uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 5992 + ○ 3b6e3661144b eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 5993 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 5994 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 5995 + ○ a2462a97cdf8 eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 5996 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 5997 + │ args: jj edit uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 5998 + ○ 4c95b3be64a6 eli@eli-nixos-xps 2 months ago, lasted 10 milliseconds 5999 + │ new empty commit 6000 + │ args: jj new uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 6001 + ○ e19d8e977392 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 6002 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 6003 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 6004 + ○ c6586be5eae9 eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 6005 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 6006 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 6007 + ○ 9530da5f7cbe eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 6008 + │ edit commit 666abfb74435de95464dc22f07bf32dde888ad98 6009 + │ args: jj edit npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --color always 6010 + ○ 28e31908331a eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 6011 + │ edit commit 3087be21cfbf5ad78bb1f771dd6523ef8d7562b8 6012 + │ args: jj edit oyzsrxumlmpqkkstmvxvrpqoxlkyworx --color always 6013 + ○ fa935a3d0a33 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 6014 + │ edit commit 666abfb74435de95464dc22f07bf32dde888ad98 6015 + │ args: jj edit npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --color always 6016 + ○ 888e3751d383 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 6017 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 6018 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 6019 + ○ 78e092d9b74c eli@eli-nixos-xps 2 months ago, lasted 9 milliseconds 6020 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 6021 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 6022 + ○ 16d6fad68ead eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6023 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 6024 + │ args: jj edit uv --color always 6025 + ○ fc2e02323b8f eli@eli-nixos-xps 3 months ago, lasted 7 milliseconds 6026 + │ squash commits into 2e166a9e68b021c23215e5ff5bf668eec02e3a54 6027 + │ args: jj squash -u --from @ --into uv _build/log --color always 6028 + ○ ad25412d8de5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6029 + │ edit commit 0af36e0760fd3ebbb6499d4acf0bcb6b27ee34d2 6030 + │ args: jj edit w --color always 6031 + ○ 2d5c8cae1b99 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6032 + │ next: 3087be21cfbf -> editing 666abfb74435 6033 + │ args: jj next --edit --color always 6034 + ○ 786a9fa74050 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6035 + │ prev: 666abfb74435 -> editing 3087be21cfbf 6036 + │ args: jj prev --edit --color always 6037 + ○ a8165c930747 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6038 + │ next: 3087be21cfbf -> editing 666abfb74435 6039 + │ args: jj next --edit --color always 6040 + ○ dcdfeee35ec6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6041 + │ next: 712823596dcc -> editing 3087be21cfbf 6042 + │ args: jj next --edit --color always 6043 + ○ 0aa5ae82702f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6044 + │ prev: 3087be21cfbf -> editing 712823596dcc 6045 + │ args: jj prev --edit --color always 6046 + ○ 1b13131d6cc4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6047 + │ prev: 666abfb74435 -> editing 3087be21cfbf 6048 + │ args: jj prev --edit --color always 6049 + ○ 258637f53d41 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6050 + │ prev: 113ab1626900 -> editing 666abfb74435 6051 + │ args: jj prev --edit --color always 6052 + ○ 11912376e984 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6053 + │ prev: 2e166a9e68b0 -> editing 113ab1626900 6054 + │ args: jj prev --edit --color always 6055 + ○ ff890e6e6592 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6056 + │ prev: 0af36e0760fd -> editing 2e166a9e68b0 6057 + │ args: jj prev --edit --color always 6058 + ○ 2b4593a858d2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6059 + │ next: 2e166a9e68b0 -> editing 0af36e0760fd 6060 + │ args: jj next --edit --color always 6061 + ○ d17a1e590a3f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6062 + │ prev: 0af36e0760fd -> editing 2e166a9e68b0 6063 + │ args: jj prev --edit --color always 6064 + ○ f422c0c5c3de eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6065 + │ snapshot working copy 6066 + │ args: jj show -s --color-words --color always 6067 + ○ 7ddb663b74b4 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6068 + │ new empty commit 6069 + │ args: jj new --color always 6070 + ○ 76b7deff03c6 eli@eli-nixos-xps 3 months ago, lasted 4 seconds 6071 + │ squash commits into 83c9fe8f3609bc4f130878c3ff2ef14e9d3bfdcf 6072 + │ args: jj squash -i --into nu 6073 + ○ 03329123583b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6074 + │ edit commit db6379e864d55c794c0b4b5d13d4e0cc5dfa0739 6075 + │ args: jj edit w --color always 6076 + ○ 5f0093686ca2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6077 + │ describe commit 2b39b40aae4f99d771d091407d90ec9649e080a3 6078 + │ args: jj describe -m bup --color always 6079 + ○ 20be04cfc0e9 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 6080 + │ new empty commit 6081 + │ args: jj new --color always 6082 + ○ d3b6d5e3d064 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6083 + │ prev: d01037ae2e80 -> editing 666abfb74435 6084 + │ args: jj prev --edit --color always 6085 + ○ 349e673347fb eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6086 + │ new empty commit 6087 + │ args: jj new --color always 6088 + ○ 2bfb4079736b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6089 + │ next: 3087be21cfbf -> editing 666abfb74435 6090 + │ args: jj next --edit --color always 6091 + ○ 0c11364097e3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6092 + │ prev: 666abfb74435 -> editing 3087be21cfbf 6093 + │ args: jj prev --color always 6094 + ○ 3e7b4b0cc939 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6095 + │ prev: 113ab1626900 -> editing 666abfb74435 6096 + │ args: jj prev --edit --color always 6097 + ○ 7d4c36d94b56 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6098 + │ prev: db6379e864d5 -> editing 113ab1626900 6099 + │ args: jj prev --edit 6100 + ○ fa424cf68eeb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6101 + │ next: 113ab1626900 -> editing db6379e864d5 6102 + │ args: jj next --edit 6103 + ○ 79b8e2bc30ef eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 6104 + │ next: 666abfb74435 -> editing 113ab1626900 6105 + │ args: jj next --edit 6106 + ○ 1587355b6c5f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6107 + │ next: 3087be21cfbf -> editing 666abfb74435 6108 + │ args: jj next --edit 6109 + ○ c278f0fa21bb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6110 + │ next: 712823596dcc -> editing 3087be21cfbf 6111 + │ args: jj next --edit 6112 + ○ 8f753eb3a9ac eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 6113 + │ prev: 3087be21cfbf -> editing 712823596dcc 6114 + │ args: jj prev --edit --color always 6115 + ○ 15bc149a7d8c eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 6116 + │ prev: 666abfb74435 -> editing 3087be21cfbf 6117 + │ args: jj prev --edit --color always 6118 + ○ e30069685cf9 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 6119 + │ prev: 113ab1626900 -> editing 666abfb74435 6120 + │ args: jj prev --edit --color always 6121 + ○ 7b1edde5af99 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6122 + │ prev: db6379e864d5 -> editing 113ab1626900 6123 + │ args: jj prev --edit --color always 6124 + ○ 45705d925f9a eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 6125 + │ next: 113ab1626900 -> editing db6379e864d5 6126 + │ args: jj next --edit --color always 6127 + ○ a8db560c9d0c eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6128 + │ snapshot working copy 6129 + │ args: jj show -s --color-words --color always 6130 + ○ 429820142033 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6131 + │ create branch bbbbb pointing to commit 9898af24583487a77e38b1d89a7ccbc8cb804ce6 6132 + │ args: jj branch create bbbbb --color always 6133 + ○ 5ba2dfbe66ce eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6134 + │ next: 666abfb74435 -> editing 9898af245834 6135 + │ args: jj next --edit --color always 6136 + ○ b7b58d162e03 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6137 + │ next: 3087be21cfbf -> editing 666abfb74435 6138 + │ args: jj next --edit --color always 6139 + ○ 275580757e74 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6140 + │ next: 712823596dcc -> editing 3087be21cfbf 6141 + │ args: jj next --edit --color always 6142 + ○ 6c6e1dc6b352 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6143 + │ next: d91f530fb94d -> editing 712823596dcc 6144 + │ args: jj next --edit --color always 6145 + ○ 57ed5b2072ff eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6146 + │ next: 1cfd1811b6dc -> editing d91f530fb94d 6147 + │ args: jj next --edit --color always 6148 + ○ b57f64c76216 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6149 + │ next: 67658784491c -> editing 1cfd1811b6dc 6150 + │ args: jj next --edit --color always 6151 + ○ 8a8dea05f3d2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6152 + │ next: 0ed6f400a7fe -> editing 67658784491c 6153 + │ args: jj next --edit --color always 6154 + ○ 1994506c5e3a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6155 + │ prev: 67658784491c -> editing 0ed6f400a7fe 6156 + │ args: jj prev --edit --color always 6157 + ○ 9bf9f1421a3b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6158 + │ prev: 1cfd1811b6dc -> editing 67658784491c 6159 + │ args: jj prev --edit --color always 6160 + ○ e0bb9d322ba2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6161 + │ create branches this, is, a, branch pointing to commit 1cfd1811b6dcadb6acd9477bc12819199e8e3a0e 6162 + │ args: jj branch create this is a branch --color always 6163 + ○ 252138ae1cd8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6164 + │ next: 67658784491c -> editing 1cfd1811b6dc 6165 + │ args: jj next --edit --color always 6166 + ○ e99e164440b9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6167 + │ next: 0ed6f400a7fe -> editing 67658784491c 6168 + │ args: jj next --edit --color always 6169 + ○ 25bd3735f935 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6170 + │ next: 53d1cc4fa210 -> editing 0ed6f400a7fe 6171 + │ args: jj next --edit --color always 6172 + ○ 559ec5226325 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6173 + │ next: 3c4573dda23c -> editing 53d1cc4fa210 6174 + │ args: jj next --edit --color always 6175 + ○ 2ab188cdcdc0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6176 + │ next: 2374647001dd -> editing 3c4573dda23c 6177 + │ args: jj next --edit --color always 6178 + ○ efe90e27f405 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6179 + │ create branches hi, there, new pointing to commit 2374647001dd1762b4e0f8d0db8be208bb360cda 6180 + │ args: jj branch create hi there new --color always 6181 + ○ 4bc60dab857e eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6182 + │ create branch hi there new pointing to commit 2374647001dd1762b4e0f8d0db8be208bb360cda 6183 + │ args: jj branch create 'hi there new' --color always 6184 + ○ 0414a317e206 eli@eli-nixos-xps 3 months ago, lasted 20 milliseconds 6185 + │ parallelize 2 commits 6186 + │ args: jj parallelize mz u 6187 + ○ a305f317ec92 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6188 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 6189 + │ args: jj next --edit --color always 6190 + ○ 4fedbeb42e62 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6191 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 6192 + │ args: jj next --edit --color always 6193 + ○ 15667da8f18b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6194 + │ next: 3eae36a2605b -> editing a32d34abf5b2 6195 + │ args: jj next --edit --color always 6196 + ○ 2f268bb632ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6197 + │ next: d648d9dc91ca -> editing 3eae36a2605b 6198 + │ args: jj next --edit --color always 6199 + ○ e940c6193eaf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6200 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 6201 + │ args: jj prev --edit --color always 6202 + ○ 84845cc4b86f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6203 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 6204 + │ args: jj prev --edit --color always 6205 + ○ bc45b5036023 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6206 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 6207 + │ args: jj prev --edit --color always 6208 + ○ bb60f151dd46 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6209 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 6210 + │ args: jj prev --edit --color always 6211 + ○ 1ad26ac4b641 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6212 + │ prev: e817aa28318f -> editing d24fcbff9fa8 6213 + │ args: jj prev --edit --color always 6214 + ○ 4a0ce54a4475 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6215 + │ prev: bf3bd93157fe -> editing e817aa28318f 6216 + │ args: jj prev --edit --color always 6217 + ○ 4a8940cbcec2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6218 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 6219 + │ args: jj prev --edit --color always 6220 + ○ 3ec11bf5422a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6221 + │ next: bf3bd93157fe -> editing cf157ef807a2 6222 + │ args: jj next --edit --color always 6223 + ○ ec63814f5707 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6224 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 6225 + │ args: jj prev --edit --color always 6226 + ○ faddc25ac42b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6227 + │ prev: 156f77d97c30 -> editing cf157ef807a2 6228 + │ args: jj prev --edit --color always 6229 + ○ 31e587b2be70 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6230 + │ next: cf157ef807a2 -> editing 156f77d97c30 6231 + │ args: jj next --edit --color always 6232 + ○ 9d6d4ab6cc14 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6233 + │ prev: 156f77d97c30 -> editing cf157ef807a2 6234 + │ args: jj prev --edit --color always 6235 + ○ f6b9368a4746 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6236 + │ next: cf157ef807a2 -> editing 156f77d97c30 6237 + │ args: jj next --edit --color always 6238 + ○ 563fd20a458b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6239 + │ prev: 156f77d97c30 -> editing cf157ef807a2 6240 + │ args: jj prev --edit --color always 6241 + ○ 1adb6b2f0988 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6242 + │ next: cf157ef807a2 -> editing 156f77d97c30 6243 + │ args: jj next --edit --color always 6244 + ○ 816a49fa1a7f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6245 + │ prev: 156f77d97c30 -> editing cf157ef807a2 6246 + │ args: jj prev --edit --color always 6247 + ○ a22b90a04709 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6248 + │ prev: b774cec816ba -> editing 156f77d97c30 6249 + │ args: jj prev --edit --color always 6250 + ○ 57d7a57bf61b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6251 + │ prev: a39ba96d6e4a -> editing b774cec816ba 6252 + │ args: jj prev --edit --color always 6253 + ○ c799390764ff eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6254 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 6255 + │ args: jj prev --edit --color always 6256 + ○ 43d5156255fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6257 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 6258 + │ args: jj prev --edit --color always 6259 + ○ 08b198fcf701 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6260 + │ next: 48d266b0f74f -> editing cc8d0eb60492 6261 + │ args: jj next --edit --color always 6262 + ○ 4d554590ef6a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6263 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 6264 + │ args: jj next --edit --color always 6265 + ○ d65b71043139 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6266 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 6267 + │ args: jj prev --edit --color always 6268 + ○ 2d6b4a603251 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6269 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 6270 + │ args: jj prev --edit --color always 6271 + ○ 9f57bcc4b3db eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6272 + │ prev: 950186d3e70f -> editing cc8d0eb60492 6273 + │ args: jj prev --edit --color always 6274 + ○ 08c379b74531 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6275 + │ prev: 39cdf2fc7a87 -> editing 950186d3e70f 6276 + │ args: jj prev --edit --color always 6277 + ○ d396260f8c53 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6278 + │ prev: 80a38dbcd596 -> editing 39cdf2fc7a87 6279 + │ args: jj prev --edit --color always 6280 + ○ fd71c4dd2d7b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6281 + │ snapshot working copy 6282 + │ args: jj show -s --color-words --color always 6283 + ○ e632f97d2fe8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6284 + │ snapshot working copy 6285 + │ args: jj show -s --color-words --color always 6286 + ○ 6f13cdbeed87 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6287 + │ next: 39cdf2fc7a87 -> editing fd28c730f4d3 6288 + │ args: jj next 6289 + ○ b535d7aa56f1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6290 + ├─╮ resolve concurrent operations 6291 + │ │ args: jj workspace update-stale 6292 + ○ │ 9450c37c8d8b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6293 + │ │ prev: 00f79c0a5121 -> editing 39cdf2fc7a87 6294 + │ │ args: jj prev --edit --ignore-working-copy 6295 + │ ○ 4f0292379492 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6296 + ├─╯ snapshot working copy 6297 + │ args: jj workspace update-stale 6298 + ○ a5a9b2acc7f1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6299 + │ prev: 57e7b64925e9 -> editing 00f79c0a5121 6300 + │ args: jj prev --edit --ignore-working-copy 6301 + ○ bb620e294aa3 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6302 + │ next: f32811cc6777 -> 00f79c0a5121 6303 + │ args: jj next 6304 + ○ ee63ce2ef6de eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6305 + │ next: ffca284d7e01 -> 39cdf2fc7a87 6306 + │ args: jj next 6307 + ○ 14ae25d705cc eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6308 + │ prev: 00f79c0a5121 -> 950186d3e70f 6309 + │ args: jj prev 6310 + ○ ec9b85fc9bf6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6311 + │ next: 39cdf2fc7a87 -> editing 00f79c0a5121 6312 + │ args: jj next 6313 + ○ 0ecc7d7b6eff eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6314 + │ describe commit cbdf80f7ada85a7da05ab201579988efc06a0c3b 6315 + │ args: jj desc -m prev 6316 + ○ 76c126ec0e56 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6317 + │ prev: d0cf97fd3caf -> editing cbdf80f7ada8 6318 + │ args: jj prev --edit 6319 + ○ 4502b37c14d6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6320 + │ prev: a0ab6bfb0a4e -> editing d0cf97fd3caf 6321 + │ args: jj prev --edit 6322 + ○ 2bbc4cea9b9f eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6323 + │ next: 6c2f0428c83c -> d0cf97fd3caf 6324 + │ args: jj next 6325 + ○ a5bc30a9ee58 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6326 + │ next: 04e66f53c455 -> cbdf80f7ada8 6327 + │ args: jj next 6328 + ○ 022a9fc105fa eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6329 + │ prev: d0cf97fd3caf -> 950186d3e70f 6330 + │ args: jj prev 6331 + ○ f92f8686a067 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6332 + │ next: cbdf80f7ada8 -> editing d0cf97fd3caf 6333 + │ args: jj next --edit 6334 + ○ fd684cdc80dd eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 6335 + │ snapshot working copy 6336 + │ args: jj log 6337 + ○ b71f4f2ce3fd eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6338 + │ prev: 538360f87be6 -> editing 2739bea98abf 6339 + │ args: jj prev --edit 6340 + ○ 26f2982f8ff4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6341 + │ next: 2739bea98abf -> editing 538360f87be6 6342 + │ args: jj next 6343 + ○ c3a21beee0e2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6344 + │ prev: 538360f87be6 -> editing 2739bea98abf 6345 + │ args: jj prev --edit 6346 + ○ 54e2ac2eef1d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6347 + │ next: 2739bea98abf -> editing 538360f87be6 6348 + │ args: jj next --edit 6349 + ○ 849604ee1706 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6350 + │ prev: c8595354cb7a -> editing 2739bea98abf 6351 + │ args: jj prev --edit 6352 + ○ 48ddf5b28eb2 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6353 + │ next: f70c33fb46e9 -> 2739bea98abf 6354 + │ args: jj next 6355 + ○ 3613dac0c79d eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6356 + │ prev: 538360f87be6 -> 950186d3e70f 6357 + │ args: jj prev 6358 + ○ ae8799cecf51 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6359 + │ snapshot working copy 6360 + │ args: jj log 6361 + ○ 43a812c24ca6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6362 + │ next: 2739bea98abf -> editing e629aa0beb6f 6363 + │ args: jj next --edit --color always 6364 + ○ e9eb4884d047 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6365 + │ next: 950186d3e70f -> editing 2739bea98abf 6366 + │ args: jj next --edit --color always 6367 + ○ a1c3280321ff eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6368 + │ next: cc8d0eb60492 -> editing 950186d3e70f 6369 + │ args: jj next --edit --color always 6370 + ○ 9e4d57b19352 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6371 + │ next: 48d266b0f74f -> editing cc8d0eb60492 6372 + │ args: jj next --edit --color always 6373 + ○ 1f8e3257b5e8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6374 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 6375 + │ args: jj next --edit --color always 6376 + ○ ef285e8c067b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6377 + │ next: b774cec816ba -> editing a39ba96d6e4a 6378 + │ args: jj next --edit --color always 6379 + ○ 5e776f76b494 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6380 + │ next: 156f77d97c30 -> editing b774cec816ba 6381 + │ args: jj next --edit --color always 6382 + ○ c02974809780 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6383 + │ next: cf157ef807a2 -> editing 156f77d97c30 6384 + │ args: jj next --edit --color always 6385 + ○ 6aeefa8a4593 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6386 + │ next: bf3bd93157fe -> editing cf157ef807a2 6387 + │ args: jj next --edit --color always 6388 + ○ c78dee0f42ed eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6389 + │ next: e817aa28318f -> editing bf3bd93157fe 6390 + │ args: jj next --edit --color always 6391 + ○ 00ce5e4e97e9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6392 + │ next: d24fcbff9fa8 -> editing e817aa28318f 6393 + │ args: jj next --edit --color always 6394 + ○ a0e5c8fb9c9c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6395 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 6396 + │ args: jj next --edit --color always 6397 + ○ 0ce3eca5b8a2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6398 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 6399 + │ args: jj next --edit --color always 6400 + ○ 16680f6f40a0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6401 + │ next: 3eae36a2605b -> editing a32d34abf5b2 6402 + │ args: jj next --edit --color always 6403 + ○ 04dcf237dd58 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6404 + │ next: d648d9dc91ca -> editing 3eae36a2605b 6405 + │ args: jj next --edit --color always 6406 + ○ 86d9781ce752 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6407 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 6408 + │ args: jj next --edit --color always 6409 + ○ e6ad5d901058 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6410 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 6411 + │ args: jj next --edit --color always 6412 + ○ 4b4c46cc97a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6413 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 6414 + │ args: jj next --edit --color always 6415 + ○ af6616a13a41 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6416 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 6417 + │ args: jj next --edit --color always 6418 + ○ 15c89fa2923d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6419 + │ next: 584796aea9d8 -> editing 8e967a8ded42 6420 + │ args: jj next --edit --color always 6421 + ○ 71245d17ae92 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6422 + │ next: 812a118be9e4 -> editing 584796aea9d8 6423 + │ args: jj next --edit --color always 6424 + ○ d8d83a770ba0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6425 + │ prev: 584796aea9d8 -> editing 812a118be9e4 6426 + │ args: jj prev --edit --color always 6427 + ○ a7dfe070528d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6428 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 6429 + │ args: jj prev --edit --color always 6430 + ○ 8f6203d67481 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6431 + │ next: 584796aea9d8 -> editing 8e967a8ded42 6432 + │ args: jj next --edit --color always 6433 + ○ 3844c0accb43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6434 + │ next: 812a118be9e4 -> editing 584796aea9d8 6435 + │ args: jj next --edit --color always 6436 + ○ bf03f81bd215 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6437 + │ next: 529712756e2c -> editing 812a118be9e4 6438 + │ args: jj next --edit --color always 6439 + ○ f71210c3a9ac eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6440 + │ next: c3e259d4c40f -> editing 529712756e2c 6441 + │ args: jj next --edit --color always 6442 + ○ ca30c30cdaac eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6443 + │ prev: 529712756e2c -> editing c3e259d4c40f 6444 + │ args: jj prev --edit --color always 6445 + ○ 36afe4c90738 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6446 + │ prev: 812a118be9e4 -> editing 529712756e2c 6447 + │ args: jj prev --edit --color always 6448 + ○ 04b8a11951b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6449 + │ prev: 584796aea9d8 -> editing 812a118be9e4 6450 + │ args: jj prev --edit --color always 6451 + ○ c9a0e9352945 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6452 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 6453 + │ args: jj prev --edit --color always 6454 + ○ 33e4cf9a8c5a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6455 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 6456 + │ args: jj prev --edit --color always 6457 + ○ 0ace05f77c15 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6458 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 6459 + │ args: jj prev --edit --color always 6460 + ○ 0dd120209c78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6461 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 6462 + │ args: jj prev --edit --color always 6463 + ○ 4ff2838fd673 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6464 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 6465 + │ args: jj prev --edit --color always 6466 + ○ c446d64f6e57 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6467 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 6468 + │ args: jj prev --edit --color always 6469 + ○ fe51570365d3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6470 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 6471 + │ args: jj prev --edit --color always 6472 + ○ ffdb38aeb725 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6473 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 6474 + │ args: jj prev --edit --color always 6475 + ○ 87e7808d6086 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6476 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 6477 + │ args: jj prev --edit --color always 6478 + ○ 8b723248c32f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6479 + │ prev: e817aa28318f -> editing d24fcbff9fa8 6480 + │ args: jj prev --edit --color always 6481 + ○ f4900f770668 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6482 + │ prev: bf3bd93157fe -> editing e817aa28318f 6483 + │ args: jj prev --edit --color always 6484 + ○ ca8a04a2670b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6485 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 6486 + │ args: jj prev --edit --color always 6487 + ○ c7cdbc94d17a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6488 + │ prev: 156f77d97c30 -> editing cf157ef807a2 6489 + │ args: jj prev --edit --color always 6490 + ○ 8708472e53b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6491 + │ prev: b774cec816ba -> editing 156f77d97c30 6492 + │ args: jj prev --edit --color always 6493 + ○ 230beee56654 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6494 + │ prev: a39ba96d6e4a -> editing b774cec816ba 6495 + │ args: jj prev --edit --color always 6496 + ○ 3916a82697dc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6497 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 6498 + │ args: jj prev --edit --color always 6499 + ○ 5b16958deed0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6500 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 6501 + │ args: jj prev --edit --color always 6502 + ○ 30b6e795010a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6503 + │ prev: 950186d3e70f -> editing cc8d0eb60492 6504 + │ args: jj prev --edit --color always 6505 + ○ 7783bd02df79 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6506 + │ prev: 2739bea98abf -> editing 950186d3e70f 6507 + │ args: jj prev --edit --color always 6508 + ○ 5019447bafc7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6509 + │ prev: e629aa0beb6f -> editing 2739bea98abf 6510 + │ args: jj prev --edit --color always 6511 + ○ ab7a5d65a236 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6512 + │ next: 2739bea98abf -> editing e629aa0beb6f 6513 + │ args: jj next --edit --color always 6514 + ○ 0203c0ab8c71 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6515 + │ next: 950186d3e70f -> editing 2739bea98abf 6516 + │ args: jj next --edit --color always 6517 + ○ 1791bd99ee86 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6518 + │ next: cc8d0eb60492 -> editing 950186d3e70f 6519 + │ args: jj next --edit --color always 6520 + ○ 4c660456add4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6521 + │ next: 48d266b0f74f -> editing cc8d0eb60492 6522 + │ args: jj next --edit --color always 6523 + ○ 2dae0304e4e6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6524 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 6525 + │ args: jj next --edit --color always 6526 + ○ 9cb76a44bf2c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6527 + │ next: b774cec816ba -> editing a39ba96d6e4a 6528 + │ args: jj next --edit --color always 6529 + ○ 9564a95365d6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6530 + │ next: 156f77d97c30 -> editing b774cec816ba 6531 + │ args: jj next --edit --color always 6532 + ○ aed3a70e08ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6533 + │ next: cf157ef807a2 -> editing 156f77d97c30 6534 + │ args: jj next --edit --color always 6535 + ○ 05f03e647c49 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6536 + │ next: bf3bd93157fe -> editing cf157ef807a2 6537 + │ args: jj next --edit --color always 6538 + ○ fb2b1c611179 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6539 + │ next: e817aa28318f -> editing bf3bd93157fe 6540 + │ args: jj next --edit --color always 6541 + ○ 898993d0d61c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6542 + │ next: d24fcbff9fa8 -> editing e817aa28318f 6543 + │ args: jj next --edit --color always 6544 + ○ 68977ec2a373 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6545 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 6546 + │ args: jj next --edit --color always 6547 + ○ f47a3c49f528 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6548 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 6549 + │ args: jj next --edit --color always 6550 + ○ 55fe64da60b9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6551 + │ next: 3eae36a2605b -> editing a32d34abf5b2 6552 + │ args: jj next --edit --color always 6553 + ○ 22b43d1c0a10 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6554 + │ next: d648d9dc91ca -> editing 3eae36a2605b 6555 + │ args: jj next --edit --color always 6556 + ○ 7f4d84bc88fc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6557 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 6558 + │ args: jj next --edit --color always 6559 + ○ 40c6fa4eb49c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6560 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 6561 + │ args: jj next --edit --color always 6562 + ○ 44b0fe87fa8a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6563 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 6564 + │ args: jj next --edit --color always 6565 + ○ acd75bfd909c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6566 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 6567 + │ args: jj next --edit --color always 6568 + ○ f1e37ba8caa4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6569 + │ next: 584796aea9d8 -> editing 8e967a8ded42 6570 + │ args: jj next --edit --color always 6571 + ○ 62442200497c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6572 + │ next: 812a118be9e4 -> editing 584796aea9d8 6573 + │ args: jj next --edit --color always 6574 + ○ 0ae375aea5ad eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6575 + │ next: 529712756e2c -> editing 812a118be9e4 6576 + │ args: jj next --edit --color always 6577 + ○ 41b60c427523 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6578 + │ next: c3e259d4c40f -> editing 529712756e2c 6579 + │ args: jj next --edit --color always 6580 + ○ f0e9c43dea62 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6581 + │ prev: 529712756e2c -> editing c3e259d4c40f 6582 + │ args: jj prev --edit --color always 6583 + ○ 7ee17f8aa9ab eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6584 + │ prev: 812a118be9e4 -> editing 529712756e2c 6585 + │ args: jj prev --edit --color always 6586 + ○ 1d28f629181c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6587 + │ prev: 584796aea9d8 -> editing 812a118be9e4 6588 + │ args: jj prev --edit --color always 6589 + ○ c3d50c44867f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6590 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 6591 + │ args: jj prev --edit --color always 6592 + ○ 7faf8be2d4f0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6593 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 6594 + │ args: jj prev --edit --color always 6595 + ○ 753c326c66da eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6596 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 6597 + │ args: jj prev --edit --color always 6598 + ○ 5a6e66a29a56 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6599 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 6600 + │ args: jj prev --edit --color always 6601 + ○ 43916dfb6ec8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6602 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 6603 + │ args: jj prev --edit --color always 6604 + ○ 829c8aa7e9f5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6605 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 6606 + │ args: jj prev --edit --color always 6607 + ○ 17daf9b8aa80 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6608 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 6609 + │ args: jj prev --edit --color always 6610 + ○ e177f2ace6e5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6611 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 6612 + │ args: jj prev --edit --color always 6613 + ○ 66cc060576bd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6614 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 6615 + │ args: jj next --edit --color always 6616 + ○ 0feedee2fcaf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6617 + │ next: 3eae36a2605b -> editing a32d34abf5b2 6618 + │ args: jj next --edit --color always 6619 + ○ 624e61c02e78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6620 + │ next: d648d9dc91ca -> editing 3eae36a2605b 6621 + │ args: jj next --edit --color always 6622 + ○ ba1de8899c87 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6623 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 6624 + │ args: jj next --edit --color always 6625 + ○ 9f10a8550e4f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6626 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 6627 + │ args: jj next --edit --color always 6628 + ○ 64b510079b24 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6629 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 6630 + │ args: jj next --edit --color always 6631 + ○ 25f9533d41a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6632 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 6633 + │ args: jj next --edit --color always 6634 + ○ 3db7940af9ab eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6635 + │ next: 584796aea9d8 -> editing 8e967a8ded42 6636 + │ args: jj next --edit --color always 6637 + ○ 2563dcbb9d63 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6638 + │ next: 812a118be9e4 -> editing 584796aea9d8 6639 + │ args: jj next --edit --color always 6640 + ○ c05559d8b93e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6641 + │ next: 529712756e2c -> editing 812a118be9e4 6642 + │ args: jj next --edit --color always 6643 + ○ 723744e1a91f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6644 + │ next: c3e259d4c40f -> editing 529712756e2c 6645 + │ args: jj next --edit --color always 6646 + ○ c8092d5af20d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6647 + │ prev: 529712756e2c -> editing c3e259d4c40f 6648 + │ args: jj prev --edit --color always 6649 + ○ a05ecdb3e0eb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6650 + │ prev: 812a118be9e4 -> editing 529712756e2c 6651 + │ args: jj prev --edit --color always 6652 + ○ 81b2a0acf74d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6653 + │ prev: 584796aea9d8 -> editing 812a118be9e4 6654 + │ args: jj prev --edit --color always 6655 + ○ 4dbb928a3f3d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6656 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 6657 + │ args: jj prev --edit --color always 6658 + ○ 7696f68b745b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6659 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 6660 + │ args: jj prev --edit --color always 6661 + ○ f0f976791366 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6662 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 6663 + │ args: jj prev --edit --color always 6664 + ○ a0f1a6265e62 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6665 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 6666 + │ args: jj prev --edit --color always 6667 + ○ 663a2010711f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6668 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 6669 + │ args: jj prev --edit --color always 6670 + ○ e1cb99ed5cb1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6671 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 6672 + │ args: jj prev --edit --color always 6673 + ○ 6f0e51018998 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6674 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 6675 + │ args: jj prev --edit --color always 6676 + ○ f964c18f4250 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6677 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 6678 + │ args: jj prev --edit --color always 6679 + ○ abc6c2d67d6c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6680 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 6681 + │ args: jj prev --edit --color always 6682 + ○ 955e6799d49a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6683 + │ prev: e817aa28318f -> editing d24fcbff9fa8 6684 + │ args: jj prev --edit --color always 6685 + ○ 46e4a167b6e9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6686 + │ prev: bf3bd93157fe -> editing e817aa28318f 6687 + │ args: jj prev --edit --color always 6688 + ○ de91ff44ef59 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6689 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 6690 + │ args: jj prev --edit --color always 6691 + ○ 440e4652352c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6692 + │ prev: 156f77d97c30 -> editing cf157ef807a2 6693 + │ args: jj prev --edit --color always 6694 + ○ 4bae8a17b53b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6695 + │ prev: b774cec816ba -> editing 156f77d97c30 6696 + │ args: jj prev --edit --color always 6697 + ○ a4d557f8ad7b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6698 + │ prev: a39ba96d6e4a -> editing b774cec816ba 6699 + │ args: jj prev --edit --color always 6700 + ○ c23d208589d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6701 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 6702 + │ args: jj prev --edit --color always 6703 + ○ e95297289186 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6704 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 6705 + │ args: jj prev --edit --color always 6706 + ○ 2cbdbc53d7b1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6707 + │ prev: 950186d3e70f -> editing cc8d0eb60492 6708 + │ args: jj prev --edit --color always 6709 + ○ a4573bf98c3f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6710 + │ prev: 2739bea98abf -> editing 950186d3e70f 6711 + │ args: jj prev --edit --color always 6712 + ○ 0e9f7a179972 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6713 + │ prev: e629aa0beb6f -> editing 2739bea98abf 6714 + │ args: jj prev --edit --color always 6715 + ○ 37a66ae3ebc9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6716 + │ next: 2739bea98abf -> editing e629aa0beb6f 6717 + │ args: jj next --edit --color always 6718 + ○ 222cdba01168 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6719 + │ next: 950186d3e70f -> editing 2739bea98abf 6720 + │ args: jj next --edit --color always 6721 + ○ 2372f98031dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6722 + │ next: cc8d0eb60492 -> editing 950186d3e70f 6723 + │ args: jj next --edit --color always 6724 + ○ e1f40502f278 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6725 + │ next: 48d266b0f74f -> editing cc8d0eb60492 6726 + │ args: jj next --edit --color always 6727 + ○ 1fc3c88ab08f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6728 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 6729 + │ args: jj next --edit --color always 6730 + ○ d8586c9fa878 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6731 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 6732 + │ args: jj prev --edit --color always 6733 + ○ 18269bea45c4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6734 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 6735 + │ args: jj prev --edit --color always 6736 + ○ 28620f402dbb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6737 + │ next: 48d266b0f74f -> editing cc8d0eb60492 6738 + │ args: jj next --edit --color always 6739 + ○ 65129eeb16ef eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6740 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 6741 + │ args: jj prev --edit --color always 6742 + ○ c7e532a0762d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6743 + │ next: 48d266b0f74f -> editing cc8d0eb60492 6744 + │ args: jj next --edit --color always 6745 + ○ f815d912f7e4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6746 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 6747 + │ args: jj prev --edit --color always 6748 + ○ 9a840cbaa8fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6749 + │ next: 48d266b0f74f -> editing cc8d0eb60492 6750 + │ args: jj next --edit --color always 6751 + ○ 686661f7ccd9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6752 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 6753 + │ args: jj next --edit --color always 6754 + ○ 8c5b7e4c1225 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6755 + │ next: b774cec816ba -> editing a39ba96d6e4a 6756 + │ args: jj next --edit --color always 6757 + ○ 3b513b12ee24 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6758 + │ next: 156f77d97c30 -> editing b774cec816ba 6759 + │ args: jj next --edit --color always 6760 + ○ 2b08f91111f7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6761 + │ prev: b774cec816ba -> editing 156f77d97c30 6762 + │ args: jj prev --edit --color always 6763 + ○ a109e43e0d0a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6764 + │ prev: a39ba96d6e4a -> editing b774cec816ba 6765 + │ args: jj prev --edit --color always 6766 + ○ 77fa8eb253ec eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6767 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 6768 + │ args: jj prev --edit --color always 6769 + ○ f6b2875d7148 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6770 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 6771 + │ args: jj prev --edit --color always 6772 + ○ 87199d2611a2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6773 + │ prev: 950186d3e70f -> editing cc8d0eb60492 6774 + │ args: jj prev --edit --color always 6775 + ○ 061aebfb8410 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6776 + │ prev: 2739bea98abf -> editing 950186d3e70f 6777 + │ args: jj prev --edit --color always 6778 + ○ f89e07306ef3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6779 + │ prev: e629aa0beb6f -> editing 2739bea98abf 6780 + │ args: jj prev --edit --color always 6781 + ○ c099446d186c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6782 + │ next: 2739bea98abf -> editing e629aa0beb6f 6783 + │ args: jj next --edit --color always 6784 + ○ e8ea71c5b2a9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6785 + │ prev: e629aa0beb6f -> editing 2739bea98abf 6786 + │ args: jj prev --edit --color always 6787 + ○ d4c1200ba27d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6788 + │ next: 2739bea98abf -> editing e629aa0beb6f 6789 + │ args: jj next --edit --color always 6790 + ○ a197a899f0fe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6791 + │ next: 950186d3e70f -> editing 2739bea98abf 6792 + │ args: jj next --edit --color always 6793 + ○ cc4ee0244c0e eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6794 + │ next: cc8d0eb60492 -> editing 950186d3e70f 6795 + │ args: jj next --edit --color always 6796 + ○ b4440477e838 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6797 + │ prev: 950186d3e70f -> editing cc8d0eb60492 6798 + │ args: jj prev --edit --color always 6799 + ○ fe1d4533a8b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6800 + │ prev: 2739bea98abf -> editing 950186d3e70f 6801 + │ args: jj prev --edit --ignore-working-copy 6802 + ○ 28dfbd17f098 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6803 + │ prev: e629aa0beb6f -> editing 2739bea98abf 6804 + │ args: jj prev --edit --ignore-working-copy 6805 + ○ 75fc418ceb44 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6806 + │ rename branch hi to branch bye 6807 + │ args: jj branch rename hi bye --color always 6808 + ○ 219d7975fe9b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6809 + │ create branch hi pointing to commit e629aa0beb6fc1f4b6aba3944776b17d6c7f0945 6810 + │ args: jj branch create hi --color always 6811 + ○ 7286142a6136 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6812 + │ prev: a78888a34918 -> editing e629aa0beb6f 6813 + │ args: jj prev --edit --color always 6814 + ○ 6bb7618574ff eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6815 + │ squash commits into edd7d0839b388ee8175f1bfe87923de06162f3e0 6816 + │ args: jj squash --quiet -m 'taroisetoariest 6817 + 6818 + │ oarisetnaorienst 6819 + 6820 + │ ' --color always 6821 + ○ 6cdad9359f5b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6822 + │ prev: 9e664ead9fc9 -> editing 2d3e7612a1b9 6823 + │ args: jj prev --edit --color always 6824 + ○ 36cb49188518 eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 6825 + │ commit 4f545f50a901b12c339db1a9e6efa1318a4415f7 6826 + │ args: jj commit -m oarisetnaorienst --color always 6827 + ○ d8a5b5a22be6 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6828 + │ commit 819c8ef8b6e075b1b670ad59bfa58bd0910eead7 6829 + │ args: jj commit -m taroisetoariest --color always 6830 + ○ f552d15d3bc4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6831 + │ commit a6153441568f9aa4c42d37f0c538933e93ceee47 6832 + │ args: jj commit -m hi --color always 6833 + ○ d486a5e71797 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6834 + │ commit 05343f4fbe95ef1f3c912c3a7bb60e5221f09d5a 6835 + │ args: jj commit -m hi --color always 6836 + ○ 56233d6a5071 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6837 + │ prev: 1eeecc488c6a -> editing 05343f4fbe95 6838 + │ args: jj prev --edit --color always 6839 + ○ 99f901cadf87 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6840 + │ squash commits into a638c52f299c89c6d565e034fdf2d21c0275f8e1 6841 + │ args: jj squash --quiet -m 'hi 6842 + 6843 + 6844 + 6845 + │ hi 6846 + 6847 + │ ' --color always 6848 + ○ 835be5b68838 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6849 + │ prev: 6c7f1ef59cb1 -> editing e4fb6d7146c2 6850 + │ args: jj prev --edit --color always 6851 + ○ b669936a2f9b eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 6852 + │ commit 17bb4b2e967bd817def69f549154ddd0aa9283b2 6853 + │ args: jj commit -m hi --color always 6854 + ○ 6ddb76e610f3 eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 6855 + │ commit 891985da418d88df9793501a85bd0268af570d81 6856 + │ args: jj commit -m hi --color always 6857 + ○ 43edbacca45f eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6858 + │ commit f1a77dc0c1daab8fbb79e0db6c99398bcc7be2c5 6859 + │ args: jj commit -m hi --color always 6860 + ○ df1d8579bf54 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6861 + │ prev: 09defe55dea1 -> editing f1a77dc0c1da 6862 + │ args: jj prev --edit --color always 6863 + ○ 3d233095f4d9 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6864 + │ squash commits into 0a9e2acd6785c0d7e3c8d3a8dcfcbefe0725ef64 6865 + │ args: jj squash --quiet -m 'hi 6866 + 6867 + 6868 + 6869 + │ theer 6870 + 6871 + │ made 6872 + 6873 + 6874 + │ ' --color always 6875 + ○ 5fdb53437364 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6876 + │ prev: 4d6c191bf4cf -> editing 2f7b7c3e3fab 6877 + │ args: jj prev --edit --color always 6878 + ○ f1e41c5cfa3e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6879 + │ squash commits into 327f68db14d6cb931c837b3114ae20701eacfefc 6880 + │ args: jj squash --quiet -m 'theer 6881 + 6882 + │ made 6883 + 6884 + │ ' --color always 6885 + ○ 57cf0ac648d3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6886 + │ prev: b9d50011a6d3 -> editing a73a3ef803a2 6887 + │ args: jj prev --edit --color always 6888 + ○ 0435af533e54 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6889 + │ commit 3d8028fbe7d23c31ea960b09e0cedd7bfc4dcdad 6890 + │ args: jj commit -m made --color always 6891 + ○ 3a9648c27abf eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 6892 + │ commit e7b7bf1c9d567e65167b3ac35f392cc11687b406 6893 + │ args: jj commit -m theer --color always 6894 + ○ 96201e98fd81 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6895 + │ commit 1fe464ed62d843e7ba91771832efc7151110e5f5 6896 + │ args: jj commit -m hi --color always 6897 + ○ 233c213fd250 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6898 + │ prev: 09c1c1b77902 -> editing 1fe464ed62d8 6899 + │ args: jj prev --edit --color always 6900 + ○ 0733c52b95c1 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6901 + │ squash commits into 0a2fe8cd9efe5d82c14abec98c7d3196efad7890 6902 + │ args: jj squash --quiet -m 'there 6903 + 6904 + 6905 + │ mate 6906 + 6907 + │ ' --color always 6908 + ○ 3959931336a8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6909 + │ prev: c3f8e3692fbb -> editing 993e23d8d37a 6910 + │ args: jj prev --edit --color always 6911 + ○ 530bda78a91d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6912 + │ commit 9265fd9185fae9942961e93d240cdaa9b758d6f7 6913 + │ args: jj commit -m mate --color always 6914 + ○ 51de25fe3b29 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 6915 + │ commit cca11a5ea849e3c9f52c24065abe36a1ecb5f09f 6916 + │ args: jj commit -m there --color always 6917 + ○ d49c25325d32 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 6918 + │ commit a8e890af7716212bf34a42f0da6735c9fcfeccc4 6919 + │ args: jj commit -m hi --color always 6920 + ○ 542217fd9678 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6921 + │ prev: 26bc476cecf5 -> editing a8e890af7716 6922 + │ args: jj prev --edit --color always 6923 + ○ 1ae1c544e128 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6924 + │ squash commits into e74ff9b54a9dbfedfb110906614f994454ea7880 6925 + │ args: jj squash --quiet -m 'heyyyy 6926 + 6927 + 6928 + │ hiii 6929 + 6930 + │ ' --color always 6931 + ○ bd95023049f0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6932 + │ snapshot working copy 6933 + │ args: jj show --color always 6934 + ○ 974d7b339326 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6935 + │ snapshot working copy 6936 + │ args: jj log --no-graph -T '"::"++current_working_copy++"::\n"++description++"\n::end::\n"' 6937 + ○ 5c32f1107dbc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6938 + │ next: e74ff9b54a9d -> editing d83af389d9ef 6939 + │ args: jj next --edit --color always 6940 + ○ 1359bbff928a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6941 + │ next: a39ba96d6e4a -> editing e74ff9b54a9d 6942 + │ args: jj next --edit --color always 6943 + ○ 8ba828b8ea12 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6944 + │ prev: e74ff9b54a9d -> editing a39ba96d6e4a 6945 + │ args: jj prev --edit --color always 6946 + ○ 9640ee5972f9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6947 + │ describe commit fce0cb59e1f4310daa2dd52fd68754f22d2f7f35 6948 + │ args: jj describe -m heyyyy --color always 6949 + ○ 0c36998be726 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6950 + │ prev: 95b2bf3f1135 -> editing fce0cb59e1f4 6951 + │ args: jj prev --edit --color always 6952 + ○ 72b85377f065 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6953 + │ describe commit 5578d593d4ac962736605ee8207665366a88ff76 6954 + │ args: jj describe -m hiii --color always 6955 + ○ 99ec0f674b2e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6956 + │ new empty commit 6957 + │ args: jj new --color always 6958 + ○ 3d6f0119134d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6959 + │ commit 140f6af911abae8f52fa038fbc9518bb4822fb5a 6960 + │ args: jj commit -m hiiiii --color always 6961 + ○ 79ff34f9df9c eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6962 + │ new empty commit 6963 + │ args: jj new --color always 6964 + ○ 794cc557ab24 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6965 + │ prev: 18a13c73abcb -> editing b774cec816ba 6966 + │ args: jj prev --edit --color always 6967 + ○ 3d386c7ebc53 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6968 + │ squash commits into d2fbf2ba883fef628309be4ce4d0d194af797c69 6969 + │ args: jj squash --quiet -m ' hi 6970 + │ hi' --color always 6971 + ○ c4c818190f84 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 6972 + │ next: d2fbf2ba883f -> editing 1f962613fdff 6973 + │ args: jj next --edit --color always 6974 + ○ d9a516d97517 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6975 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 6976 + │ args: jj next --edit --color always 6977 + ○ d3193ea846ca eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6978 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 6979 + │ args: jj prev --edit --color always 6980 + ○ 9795b66a350d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6981 + │ prev: 1f962613fdff -> editing d2fbf2ba883f 6982 + │ args: jj prev --edit --color always 6983 + ○ 8eb189214c1f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6984 + │ prev: de3d206586eb -> editing 1f962613fdff 6985 + │ args: jj prev --edit --color always 6986 + ○ 3d0ebb24fde9 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 6987 + │ commit 4fc1da577d622650339905379b24c10182f8213f 6988 + │ args: jj commit -m hi --color always 6989 + ○ 906dedf9bf65 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 6990 + │ new empty commit 6991 + │ args: jj new --color always 6992 + ○ 79a2293e6ebe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6993 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 6994 + │ args: jj next --edit --color always 6995 + ○ 7ff7dd3ac474 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6996 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 6997 + │ args: jj prev --edit --color always 6998 + ○ 2082701b30f9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 6999 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 7000 + │ args: jj next --edit --color always 7001 + ○ 1b46eec9cf13 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7002 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 7003 + │ args: jj prev --edit --color always 7004 + ○ 331dd68121cb eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7005 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 7006 + │ args: jj next --edit --color always 7007 + ○ 6149ef8de1a3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7008 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 7009 + │ args: jj prev --edit --color always 7010 + ○ d0280d2971ba eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7011 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 7012 + │ args: jj next --edit --color always 7013 + ○ 55e9e5b666c4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7014 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 7015 + │ args: jj prev --edit --color always 7016 + ○ eb69650930c2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7017 + │ describe commit f7f6a239f683133aea01c9348214a4387f2f4233 7018 + │ args: jj describe -m hi --color always 7019 + ○ 57ff3a6b65c9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7020 + │ new empty commit 7021 + │ args: jj new --color always 7022 + ○ 92e5a759b532 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7023 + │ prev: db28a3c94548 -> editing 156f77d97c30 7024 + │ args: jj prev --edit --color always 7025 + ○ 52f9d46ebed0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7026 + │ squash commits into ce6791c1369d899c890905b4afba26e93f99b059 7027 + │ args: jj squash --quiet -m '◉ top 7028 + │ @ bottom' --color always 7029 + ○ 1d1d1f007a70 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7030 + │ describe commit 205d2260c671e0d59fea1bd704db38ef37f35feb 7031 + │ args: jj describe -m bottom --color always 7032 + ○ 466a213fcfca eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7033 + │ new empty commit 7034 + │ args: jj new --color always 7035 + ○ 1d987e97b96e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7036 + │ describe commit 45e24d7495a87dcfe31b87feee6a5ff306cd34da 7037 + │ args: jj describe -m top --color always 7038 + ○ 61db9da90743 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7039 + │ new empty commit 7040 + │ args: jj new --color always 7041 + ○ 0f3e71bb30d6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7042 + │ prev: 27c5ac2f280e -> editing cf157ef807a2 7043 + │ args: jj prev --edit --color always 7044 + ○ 7dcc590a6c5a eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7045 + │ squash commits into f0a8ee6faf9531723ac069aba25c698e843f2bc5 7046 + │ args: jj squash --quiet -m '\'◉ top 7047 + │ @ \' bottom 7048 + │ │ top\'\'' --color always 7049 + ○ de8f4fcc492c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7050 + │ next: f0a8ee6faf95 -> editing 32a7bd1d1da4 7051 + │ args: jj next --edit --color always 7052 + ○ 272e024b34f1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7053 + │ prev: 32a7bd1d1da4 -> editing f0a8ee6faf95 7054 + │ args: jj prev --edit --color always 7055 + ○ 3c40022e3ab2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7056 + │ next: f0a8ee6faf95 -> editing 32a7bd1d1da4 7057 + │ args: jj next --edit --color always 7058 + ○ 384780c22afa eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7059 + │ prev: 32a7bd1d1da4 -> editing f0a8ee6faf95 7060 + │ args: jj prev --edit --color always 7061 + ○ f7ef54954104 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7062 + │ prev: 83e52c5bad57 -> editing 32a7bd1d1da4 7063 + │ args: jj prev --edit --color always 7064 + ○ 1276407ad8fb eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7065 + │ squash commits into 50a646e48dc375fb39f24d5056b05699bd756a19 7066 + │ args: jj squash --quiet -m '\' bottom 7067 + │ top\'' --color always 7068 + ○ 1f026b64b28d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7069 + │ next: 50a646e48dc3 -> editing 647056aa842a 7070 + │ args: jj next --edit --color always 7071 + ○ 300b004a7d08 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7072 + │ prev: 1ccda61c8afb -> editing 50a646e48dc3 7073 + │ args: jj prev --edit --color always 7074 + ○ 3307862123fa eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7075 + │ commit c567ed81c071bc84de591c42843125f5c40058a0 7076 + │ args: jj commit -m bottom --color always 7077 + ○ 05533a1e03e3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7078 + │ prev: b8ff36a2e567 -> editing c567ed81c071 7079 + │ args: jj prev --edit --color always 7080 + ○ 7e8e95d1639e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7081 + │ describe commit 1314b89c9c73d1b58444203a7b37803dfa5618e9 7082 + │ args: jj describe -m top --color always 7083 + ○ b361daa69f91 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7084 + │ describe commit 6d84b0df6f455c79dca8ad8fa14014dfd98e018f 7085 + │ args: jj describe -m bottom --color always 7086 + ○ 09b2fc440548 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7087 + │ new empty commit 7088 + │ args: jj new --color always 7089 + ○ a38479196b0e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7090 + │ commit 00c3ea8fee69a8d37022a3b82204ce99f5bfb014 7091 + │ args: jj commit -m top --color always 7092 + ○ ae4096910b24 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7093 + │ squash commits into f8625ee3fa8c7d82cb14f40e49fb7b498c123606 7094 + │ args: jj squash --quiet -m '\' \' hi 7095 + │ hi\' 7096 + │ hi\'' --color always 7097 + ○ 97cd694b3d62 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 7098 + │ describe commit 7338aec8c0a4b9718f1f096970017c7ccfe480d6 7099 + │ args: jj describe -m hi --color always 7100 + ○ e82d5c639ccb eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7101 + │ new empty commit 7102 + │ args: jj new --color always 7103 + ○ a517a8e91755 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7104 + │ prev: f4f6a1633518 -> editing f8625ee3fa8c 7105 + │ args: jj prev --edit --color always 7106 + ○ 6c279d45d045 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7107 + │ squash commits into d0ce96126dee3281b467802904bde912d45a3527 7108 + │ args: jj squash --quiet -m '\' hi 7109 + │ hi\'' --color always 7110 + ○ c1d51e2755e0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7111 + │ next: d0ce96126dee -> editing e82e5b5491cd 7112 + │ args: jj next --edit --color always 7113 + ○ fd94b05e3ca2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7114 + │ next: e817aa28318f -> editing d0ce96126dee 7115 + │ args: jj next --edit --color always 7116 + ○ 9124112d1dbd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7117 + │ prev: d0ce96126dee -> editing e817aa28318f 7118 + │ args: jj prev --edit --color always 7119 + ○ 7252bfb45762 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7120 + │ describe commit ae954d026f84db8bfa794e6232b40e692c59e229 7121 + │ args: jj describe -m hi --color always 7122 + ○ 94aea33cbd7b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7123 + │ prev: e355f252ac5a -> editing ae954d026f84 7124 + │ args: jj prev --edit --color always 7125 + ○ f260ae605079 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 7126 + │ describe commit c1ace5daa8404742bbd66789a29f34633825acf8 7127 + │ args: jj describe -m hi --color always 7128 + ○ 35b7b6600bf7 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7129 + │ new empty commit 7130 + │ args: jj new --color always 7131 + ○ 68933af246a6 eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 7132 + │ squash commits into 18ab77d50aaef2c55f808a339c8ac8c2d6ea2ddb 7133 + │ args: jj squash --quiet -m ' hi there mat 7134 + │ yyyyyyyy 7135 + │ this is a commit 7136 + │ commit 7137 + │ top commit 7138 + │ topper commit' --color always 7139 + ○ 9cc80e5f627e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7140 + │ prev: d2a4e6243427 -> editing bb65a7894857 7141 + │ args: jj prev --edit --color always 7142 + ○ 5a4863efebca eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7143 + │ squash commits into 3eaf5931de732431dccef0cbdad6c56fbef5c24e 7144 + │ args: jj squash --quiet -m ' top commit 7145 + │ topper commit' --color always 7146 + ○ 026432566bef eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7147 + │ describe commit 0eb5a19656c0e4cced7ec50c196477c24fb176e7 7148 + │ args: jj describe -m 'topper commit' --color always 7149 + ○ 579f436ac715 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7150 + │ new empty commit 7151 + │ args: jj new --color always 7152 + ○ e55221df45cc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7153 + │ describe commit d5baf524331cacd7ea920ca3bdc013e38d7686cf 7154 + │ args: jj describe -m 'top commit' --color always 7155 + ○ 0dd772cbc20f eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7156 + │ new empty commit 7157 + │ args: jj new --color always 7158 + ○ b25c1cc7a8a6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7159 + │ prev: 8e1093c7e457 -> editing 18ab77d50aae 7160 + │ args: jj prev --edit --color always 7161 + ○ 6d81914894b1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7162 + │ squash commits into fe87bc4a05fd40f0055a43562c5bc516f879c0ed 7163 + │ args: jj squash --quiet -m ' hi there mat 7164 + │ yyyyyyyy 7165 + │ this is a commit 7166 + │ commit' --color always 7167 + ○ 31a34cca8ec6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7168 + │ next: fe87bc4a05fd -> editing 1193ed1893f1 7169 + │ args: jj next --edit --color always 7170 + ○ 2578d0def711 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7171 + │ prev: 1193ed1893f1 -> editing fe87bc4a05fd 7172 + │ args: jj prev --edit --color always 7173 + ○ c7b612d848be eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7174 + │ prev: 42f0dcc74dc0 -> editing 1193ed1893f1 7175 + │ args: jj prev --edit --color always 7176 + ○ 586da1bae0a6 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7177 + │ squash commits into f25dfcedf981a094b07f0139ed65529835c48c6a 7178 + │ args: jj squash --quiet -m ' this is a commit 7179 + │ commit' --color always 7180 + ○ 63df71358f8a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7181 + │ describe commit 4d19c2bdae62d269980aeb4dc084c613fee826a6 7182 + │ args: jj describe -m commit --color always 7183 + ○ c2d08949d823 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7184 + │ commit ff87f3f2a5122b8d82a4647510b8ab73d5f83f95 7185 + │ args: jj commit -m 'this is a commit' --color always 7186 + ○ 4a0c3db017a6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7187 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 7188 + │ args: jj next --edit --color always 7189 + ○ 78cb97b6ce83 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7190 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 7191 + │ args: jj prev --edit --color always 7192 + ○ a89761ade04f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7193 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 7194 + │ args: jj next --edit --color always 7195 + ○ f324a488d108 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7196 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 7197 + │ args: jj prev --edit --color always 7198 + ○ e0b783238c27 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7199 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 7200 + │ args: jj next --edit --color always 7201 + ○ 91235f435de5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7202 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 7203 + │ args: jj prev --edit --color always 7204 + ○ 940c3ac42718 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7205 + │ describe commit 5c0afa99dcd1e5507ceddc59eb3716f59a5191ad 7206 + │ args: jj describe -m 'hely there' --color always 7207 + ○ 2302b65d18bf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7208 + │ new empty commit 7209 + │ args: jj new --color always 7210 + ○ bff2ab254bfa eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7211 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 7212 + │ args: jj next --edit --color always 7213 + ○ 901efcc54ae8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7214 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 7215 + │ args: jj prev --edit --color always 7216 + ○ 6d70d536ab10 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7217 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 7218 + │ args: jj next --edit --color always 7219 + ○ 656a0126e7e4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7220 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 7221 + │ args: jj prev --edit --color always 7222 + ○ a144c62c7837 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7223 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 7224 + │ args: jj next --edit --color always 7225 + ○ 6bb9f183444c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7226 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 7227 + │ args: jj prev --edit --color always 7228 + ○ 70b5ca56ada0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7229 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 7230 + │ args: jj next --edit --color always 7231 + ○ 835f6c9b8a72 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7232 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 7233 + │ args: jj prev --edit --color always 7234 + ○ ed1ac1807351 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7235 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 7236 + │ args: jj next --edit --color always 7237 + ○ fdd896eb9553 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7238 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 7239 + │ args: jj prev --edit --color always 7240 + ○ 789df408207c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7241 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 7242 + │ args: jj next --edit --color always 7243 + ○ f2b429de9cb2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7244 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 7245 + │ args: jj next --edit --color always 7246 + ○ cc816f4ae364 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7247 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 7248 + │ args: jj next --edit --color always 7249 + ○ 156f7cf54933 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7250 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 7251 + │ args: jj prev --edit --color always 7252 + ○ 94a5b651ff11 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7253 + │ prev: c3b589acfe23 -> editing 8d106e583dc6 7254 + │ args: jj prev --edit --color always 7255 + ○ 7a23e316c947 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7256 + │ new empty commit 7257 + │ args: jj new --color always 7258 + ○ a5a8b83e5314 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7259 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 7260 + │ args: jj prev --color always 7261 + ○ 0b1c2e04d971 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7262 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 7263 + │ args: jj prev --edit --color always 7264 + ○ 055acb5faa3e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7265 + │ prev: 225de22ef62d -> editing fe87bc4a05fd 7266 + │ args: jj prev --edit --color always 7267 + ○ c94e1a034136 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7268 + │ squash commits into 99f39383d166ff653f06801222dee4a8dae92c50 7269 + │ args: jj squash --quiet -m ' hi there mat 7270 + │ yyyyyyyy 7271 + │ ' --color always 7272 + ○ 421981001df6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7273 + │ describe commit 47a7471e53d1e823aa10cc93a0bd391d56ae1600 7274 + │ args: jj describe -m h --color always 7275 + ○ 29689d961d03 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7276 + │ new empty commit 7277 + │ args: jj new --color always 7278 + ○ b0c2b74a6043 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7279 + │ prev: 06f5d53d2e8f -> editing 99f39383d166 7280 + │ args: jj prev --edit --color always 7281 + ○ 612a4ab1b057 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7282 + │ squash commits into 1457bf903cc993893cf68de3ee76c163a164d1dd 7283 + │ args: jj squash --quiet -m 'hi there mate 7284 + │ yyyyyyyy2 7285 + │ ' --color always 7286 + ○ 8e734856b428 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7287 + │ describe commit bcfecf26c567ee77cbb8f70503075330b0eec1e7 7288 + │ args: jj describe -m h --color always 7289 + ○ c316a1f806c3 eli@eli-nixos-xps 3 months ago, lasted 8 milliseconds 7290 + │ new empty commit 7291 + │ args: jj new --color always 7292 + ○ 0ac2c3561664 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7293 + │ prev: 4bfe97e78880 -> editing 1457bf903cc9 7294 + │ args: jj prev --edit --color always 7295 + ○ 30b466f48c0b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7296 + │ squash commits into be99ca72c432c245b909449d9607eaef5c81bc62 7297 + │ args: jj squash --quiet -m 'hi there mate 7298 + │ yyyyyyyy2' --color always 7299 + ○ 9f85bb043617 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7300 + │ prev: 157be426bb53 -> editing 44f387767d12 7301 + │ args: jj prev --edit --color always 7302 + ○ 3775dd33bd2a eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7303 + │ commit 022f99b6d9b8408d60748cf5d12bf22b1af2ea52 7304 + │ args: jj commit -m heyyyyyyyy2 --color always 7305 + ○ 277723acd733 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7306 + │ commit 90032a7b8d4095d26421ba2ca6abc41697ceffe0 7307 + │ args: jj commit -m 'hi there mate' --color always 7308 + ○ 478a422322b4 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7309 + │ squash commits into a1d466a6844248a3b22cfc818dfc135b81800721 7310 + │ args: jj squash --quiet -m ' hi2 7311 + │ hi3' --color always 7312 + ○ 280c74b24d68 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7313 + │ prev: a438131bc1ba -> editing da8a3d50b051 7314 + │ args: jj prev --edit --color always 7315 + ○ 3df55b0b9c9d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7316 + │ commit 6dd0c512f09ff77281a2085d4a90d56f0bbc3216 7317 + │ args: jj commit -m hi3 --color always 7318 + ○ 2b23e4116a3b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7319 + │ commit 192954578eb7130b6a2abc9a152c06d590c7103b 7320 + │ args: jj commit -m hi2 --color always 7321 + ○ 9641ff68e0b8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7322 + │ commit fd87c5dbd403ac3f555600df53bebfad3e95c412 7323 + │ args: jj commit -m hi --color always 7324 + ○ c8820346fc54 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7325 + │ squash commits into 0a409b39ba02064525c85594ce3414ed9533b941 7326 + │ args: jj squash --quiet -m ' this is a thi 7327 + │ this is anoth 7328 + │ now anothe 7329 + │ no 7330 + │ this is ne' --color always 7331 + ○ 839c4efa675e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7332 + │ prev: c6b827eeb6d9 -> editing 31e094baca12 7333 + │ args: jj prev --edit --color always 7334 + ○ 00e94b5ef2f1 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7335 + │ squash commits into a30ae8a25dbb9ccb10d98b0fcfd49840d3c58e98 7336 + │ args: jj squash --quiet -m ' no 7337 + │ this is ne' --color always 7338 + ○ f9aaf009216c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7339 + │ prev: cae90814da8b -> editing 52881c5ed406 7340 + │ args: jj prev --edit --color always 7341 + ○ df70ee7fb571 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7342 + │ commit 687d0f50a6e2e88fd380479e4fa42a781f55e631 7343 + │ args: jj commit -m 'this is new' --color always 7344 + ○ 7f7520f3c64f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7345 + │ commit 728111e81196e6b91fc3ac657deba15f9304cb91 7346 + │ args: jj commit -m now --color always 7347 + ○ 92167d93630b eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7348 + │ new empty commit 7349 + │ args: jj new --color always 7350 + ○ 2442dcd504f4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7351 + │ next: 3eae36a2605b -> editing 0a409b39ba02 7352 + │ args: jj next --edit --color always 7353 + ○ 80af4ec24bda eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7354 + │ next: d648d9dc91ca -> editing 3eae36a2605b 7355 + │ args: jj next --edit --color always 7356 + ○ 90358830f841 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7357 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 7358 + │ args: jj prev --edit --color always 7359 + ○ 83867c22075a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7360 + │ prev: 0a409b39ba02 -> editing 3eae36a2605b 7361 + │ args: jj prev --edit --color always 7362 + ○ f63a16e3709c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7363 + │ next: 3eae36a2605b -> editing 0a409b39ba02 7364 + │ args: jj next --edit --color always 7365 + ○ 7e97385ab087 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7366 + │ prev: 0a409b39ba02 -> editing 3eae36a2605b 7367 + │ args: jj prev --edit --color always 7368 + ○ 624c4b1877c8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7369 + │ prev: 24ce6f90f0b7 -> editing 0a409b39ba02 7370 + │ args: jj prev --edit --color always 7371 + ○ 95897ffa0d66 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7372 + │ squash commits into 74584829d54c50c43cd7cb61ab34f43d5bbfad48 7373 + │ args: jj squash --quiet -m ' this is a thi 7374 + │ this is anoth 7375 + │ now anothe' --color always 7376 + ○ 39da8f5514c6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7377 + │ describe commit d6e0881ed10552841ef050483e662385da7cd98c 7378 + │ args: jj describe -m 'now another' --color always 7379 + ○ b703a5c6aa73 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7380 + │ new empty commit 7381 + │ args: jj new --color always 7382 + ○ c0958f2efd9d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7383 + │ prev: 20e100f23ad8 -> editing 74584829d54c 7384 + │ args: jj prev --edit --color always 7385 + ○ 518d52001d89 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7386 + │ squash commits into 7ba9245258b17c06ef1f52d56428e86d52feed93 7387 + │ args: jj squash --quiet -m ' this is a thin 7388 + │ this is anothe' --color always 7389 + ○ cfdcfe764978 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7390 + │ describe commit 400c8a9362371dee59677733f87937da54abaa54 7391 + │ args: jj describe -m 'this is another' --color always 7392 + ○ 9fbf7f954ee9 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7393 + │ new empty commit 7394 + │ args: jj new --color always 7395 + ○ 46770e4be71d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7396 + │ describe commit d3fcbecf2f1e7552a881605dd949249f88582f0b 7397 + │ args: jj describe -m 'this is a thing' --color always 7398 + ○ 1087912733f5 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 7399 + │ new empty commit 7400 + │ args: jj new --color always 7401 + ○ ab36c9539ac3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7402 + │ prev: ba9c580d4485 -> editing 3eae36a2605b 7403 + │ args: jj prev --edit --color always 7404 + ○ 5e2f02c3acff eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 7405 + │ squash commits into e3db7fd1a46b40ecb3e55f3bc53a42ef7405bf38 7406 + │ args: jj squash --quiet -m ' h 7407 + │ this is my message 7408 + │ hello this is my special 7409 + │ hi \n this is \n a multi l 7410 + 7411 + │ th 7412 + │ │ 7413 + │ m' --color always 7414 + ○ aaba6e4045e5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7415 + │ next: e3db7fd1a46b -> editing f8c79ce3d777 7416 + │ args: jj next --edit --color always 7417 + ○ d6a941f7be1e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7418 + │ next: d648d9dc91ca -> editing e3db7fd1a46b 7419 + │ args: jj next --edit --color always 7420 + ○ 10dd0c19a400 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7421 + │ prev: e3db7fd1a46b -> editing d648d9dc91ca 7422 + │ args: jj prev --edit --color always 7423 + ○ 085d072dbd7e eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7424 + │ describe commit d12586fdc5021c0201392a705d6df5e6fcacb539 7425 + │ args: jj describe -m hi --color always 7426 + ○ 0c7a46ddad47 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7427 + │ prev: b0c0787a8f3a -> editing d12586fdc502 7428 + │ args: jj prev --edit --color always 7429 + ○ 873ab7a524e0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7430 + │ prev: 69a38f67d1cf -> editing b0c0787a8f3a 7431 + │ args: jj prev --edit --color always 7432 + ○ 5b5cb72ec4b8 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7433 + │ squash commits into b3e4d35c33b7046dd5e710b4401a8b08e5c2af03 7434 + │ args: jj squash --quiet -m ' this is my message : 7435 + │ hello this is my special b 7436 + │ hi \n this is \n a multi li 7437 + │ n 7438 + │ the 7439 + 7440 + │ mo' --color always 7441 + ○ 986fad765f33 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7442 + │ next: b3e4d35c33b7 -> editing 773597b3d0f1 7443 + │ args: jj next --edit --color always 7444 + ○ f42938919c54 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7445 + │ prev: 773597b3d0f1 -> editing b3e4d35c33b7 7446 + │ args: jj prev --edit --color always 7447 + ○ cdf4da0487d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7448 + │ prev: 6393780b30ec -> editing 773597b3d0f1 7449 + │ args: jj prev --edit --color always 7450 + ○ d6688e060a1a eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 7451 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 7452 + │ args: jj squash --quiet -m ' hello this is my special bo 7453 + │ hi \n this is \n a multi lin 7454 + │ no 7455 + │ ther 7456 + │ i 7457 + │ mor' --color always 7458 + ○ fff2af294d04 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7459 + │ describe commit 9eb92d2014b4ab3ebf640492fb0775987ed3adda 7460 + │ args: jj desc 7461 + ○ 28b803520ea6 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 7462 + │ describe commit df00622cb6f12b5a1f6e2e39cc84b4d4c3e547be 7463 + │ args: jj desc -m 'hi \n this is \n a multi line' 7464 + ○ 336c08cafc20 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 7465 + │ describe commit fa1b077eee7d761770d5293e6ba893c678aac280 7466 + │ args: jj desc -m 'hi \n this is \n a multi \n line' 7467 + ○ 69e12ef2e07d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7468 + │ undo operation 7374a0cd8a6616cc6a60933fd964955f178d1068641ebd88a377c428ed215dbf2962f009c687f9bae6838b6482d1e1e3fae240ad0d142d8b2bb8fd1c66bd857b 7469 + │ args: jj undo 7470 + ○ 7374a0cd8a66 eli@eli-nixos-xps 3 months ago, lasted 1 second 7471 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 7472 + │ args: jj squash --quiet 7473 + ○ 2a558963f66c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7474 + │ undo operation 2b7e1078d924e9fb7ac4bbb5761ff4cb3056c7b648eb464d1765b3c74dd771ad910874106918e4443d725bacf0bac7d55a902d1bbee7ed0631847e006cb5cc8b 7475 + │ args: jj undo 7476 + ○ 2b7e1078d924 eli@eli-nixos-xps 3 months ago, lasted 7 seconds 7477 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 7478 + │ args: jj squash 7479 + ○ ae6fc6d7b96f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7480 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 7481 + │ args: jj next --edit --color always 7482 + ○ 41674f86b372 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7483 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 7484 + │ args: jj next --edit --color always 7485 + ○ 5eb0011619b1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7486 + │ prev: 2ae3d1650045 -> editing b3e4d35c33b7 7487 + │ args: jj prev --edit --color always 7488 + ○ c02ce79c4283 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7489 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 7490 + │ args: jj prev --edit --color always 7491 + ○ 9dd9ae638561 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7492 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 7493 + │ args: jj next --edit --color always 7494 + ○ ff5870588251 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7495 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 7496 + │ args: jj next --edit --color always 7497 + ○ cd49d6aba628 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7498 + │ prev: 2ae3d1650045 -> editing b3e4d35c33b7 7499 + │ args: jj prev --edit --color always 7500 + ○ 9ca54ed66cac eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7501 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 7502 + │ args: jj prev --edit --color always 7503 + ○ 6763fc518d71 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7504 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 7505 + │ args: jj next --edit --color always 7506 + ○ 2fc1aa9d45cc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7507 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 7508 + │ args: jj prev --edit --color always 7509 + ○ ca730b90aea4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7510 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 7511 + │ args: jj next --edit --color always 7512 + ○ 34a707bfe05d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7513 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 7514 + │ args: jj prev --edit --color always 7515 + ○ 085e9bb05257 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7516 + │ prev: b0c4617ffa7d -> editing fa1b077eee7d 7517 + │ args: jj prev --edit --color always 7518 + ○ 3022b554c46f eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7519 + │ commit d719e11dd85bdb744ff66b25e25271d4a862ec09 7520 + │ args: jj commit -m hiiiii --color always 7521 + ○ 8145b341d893 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7522 + │ next: 2ae3d1650045 -> editing d719e11dd85b 7523 + │ args: jj next --edit --color always 7524 + ○ 97c3b7bf48cf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7525 + │ prev: d719e11dd85b -> editing 2ae3d1650045 7526 + │ args: jj prev --edit --color always 7527 + ○ 35f4fd06cd39 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7528 + │ next: 2ae3d1650045 -> editing d719e11dd85b 7529 + │ args: jj next --edit --color always 7530 + ○ ec440b1f43ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7531 + │ prev: d719e11dd85b -> editing 2ae3d1650045 7532 + │ args: jj prev --edit --color always 7533 + ○ f3b61e5fb0fb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7534 + │ prev: 8cd0454a21da -> editing d719e11dd85b 7535 + │ args: jj prev --edit --color always 7536 + ○ 785d92e031b6 eli@eli-nixos-xps 3 months ago, lasted 10 seconds 7537 + │ squash commits into 8462bc918128fbaff8b644f0c8990236b9ef675f 7538 + │ args: jj squash 7539 + ○ 760e2b6cec7f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7540 + │ next: 8462bc918128 -> editing b04601bd562b 7541 + │ args: jj next --edit --color always 7542 + ○ 4eb1f21ec911 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7543 + │ next: 2ae3d1650045 -> editing 8462bc918128 7544 + │ args: jj next --edit --color always 7545 + ○ 9c2a2c7a5968 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7546 + │ prev: 8462bc918128 -> editing 2ae3d1650045 7547 + │ args: jj prev --edit --color always 7548 + ○ f1664a977024 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7549 + │ prev: b04601bd562b -> editing 8462bc918128 7550 + │ args: jj prev --edit --color always 7551 + ○ 0eb8c8aa57e4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7552 + │ next: 8462bc918128 -> editing b04601bd562b 7553 + │ args: jj next --edit --color always 7554 + ○ 498bf80c28d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7555 + │ prev: b04601bd562b -> editing 8462bc918128 7556 + │ args: jj prev --edit --color always 7557 + ○ 1a1b9f69d7c5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7558 + │ prev: 380b86b14035 -> editing b04601bd562b 7559 + │ args: jj prev --edit --color always 7560 + ○ b641345bb0dc eli@eli-nixos-xps 3 months ago, lasted 21 seconds 7561 + │ squash commits into 7b9aa64334f71116151da406c22a6acff8034a79 7562 + │ args: jj squash 7563 + ○ 57c74721a175 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7564 + │ next: 7b9aa64334f7 -> editing ac5d6b68c353 7565 + │ args: jj next --edit --color always 7566 + ○ 582ea275768c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7567 + │ prev: 908c5a93a070 -> editing 7b9aa64334f7 7568 + │ args: jj prev --edit --color always 7569 + ○ ae9e34b1876f eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 7570 + │ squash commits into 76d3e5700bae704cbb5be19e24e0750d351e8b9d 7571 + │ args: jj squash 7572 + ○ f58bd48f9277 eli@eli-nixos-xps 3 months ago, lasted 43 seconds 7573 + │ squash commits into 668cc05d3e3aae7423e0529cbd7bee3244df6937 7574 + │ args: jj squash 7575 + ○ 65b81990de1b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7576 + │ rebase commit 5ed7a69853871be56aed990b217ef798412fc523 7577 + │ args: jj rebase -r @ -d u --color always 7578 + ○ 28230b698671 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7579 + │ describe commit 830e03c6c8cd63e4061406ecea11e3baa0804a4b 7580 + │ args: jj describe -m 'new steuff' --color always 7581 + ○ f050a744b838 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7582 + │ next: 72361777e19e -> editing 830e03c6c8cd 7583 + │ args: jj next --edit --color always 7584 + ○ e644b5eb7f75 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7585 + │ prev: 830e03c6c8cd -> editing 72361777e19e 7586 + │ args: jj prev --edit --color always 7587 + ○ 20f3a6a558f9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7588 + │ snapshot working copy 7589 + │ args: jj prev --edit --color always 7590 + ○ 9742b7c4ee6b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7591 + │ commit 6bfd852f2c0147705ce9868ebef6b78f732cc29d 7592 + │ args: jj commit -m extra --color always 7593 + ○ 7a797e4c5627 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7594 + │ next: 668cc05d3e3a -> editing 6bfd852f2c01 7595 + │ args: jj next --edit --color always 7596 + ○ 90229c010d34 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7597 + │ prev: 6bfd852f2c01 -> editing 668cc05d3e3a 7598 + │ args: jj prev --edit --color always 7599 + ○ 44d5c82aae91 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7600 + │ snapshot working copy 7601 + │ args: jj prev --edit --color always 7602 + ○ e8fd6539165c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7603 + │ describe commit a4e05a4b131b41b732937d14dd82e4dcd2dae3b7 7604 + │ args: jj describe -m 'this is new' --color always 7605 + ○ 9f855ceb1599 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7606 + │ new empty commit 7607 + │ args: jj new --color always 7608 + ○ 9b3f2aa41814 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7609 + │ next: 8462bc918128 -> editing 668cc05d3e3a 7610 + │ args: jj next --edit --color always 7611 + ○ 68f60c866128 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7612 + │ describe commit f813640477a0b7e6ec55b09bfbe12de75390fb95 7613 + │ args: jj describe -m hi --color always 7614 + ○ dfb756887e70 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7615 + │ snapshot working copy 7616 + │ args: jj show --color always 7617 + ○ accdaec67195 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7618 + │ next: 2ae3d1650045 -> editing 851991850ea8 7619 + │ args: jj next --edit --color always 7620 + ○ be19b860c1fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7621 + │ prev: 851991850ea8 -> editing 2ae3d1650045 7622 + │ args: jj prev --edit --color always 7623 + ○ ae7e42c0df77 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7624 + │ prev: 71256f7d85c2 -> editing 851991850ea8 7625 + │ args: jj prev --edit --color always 7626 + ○ c17cfff5ac1f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7627 + │ undo operation 4361df5107eddbc0094a58ed57de702409d25ba16e79308eefb7075d7bdbd168fd57e0f6f94a79fb7f60eddfc381ef4057c53bba96ece55930994fa34b21451c 7628 + │ args: jj undo 7629 + ○ 4361df5107ed eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 7630 + │ rebase commit 71256f7d85c2a85cd0590943198b89051aa7cebe 7631 + │ args: jj rebase -r @ -d t --color always 7632 + ○ 0da4f9de1ce1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7633 + │ undo operation 9f9e306937d410cd10ce5fcfcd814ed8cb38f3f6fe1f5886e0d81986759c74ffcdd3a527c55d3629b6e034a42c8069a780db816b283bbe174d8bb87e9a69355c 7634 + │ args: jj undo 7635 + ○ 9f9e306937d4 eli@eli-nixos-xps 3 months ago, lasted 8 milliseconds 7636 + │ abandon commit 71256f7d85c2a85cd0590943198b89051aa7cebe 7637 + │ args: jj abandon 7638 + ○ 1750a7ff0ecc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7639 + │ snapshot working copy 7640 + │ args: jj status 7641 + ○ b968c3a55edb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7642 + │ next: 851991850ea8 -> editing 737ffbb53f06 7643 + │ args: jj next --edit 7644 + ○ c1f7278bf51d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7645 + │ next: 2ae3d1650045 -> editing 851991850ea8 7646 + │ args: jj next --edit 7647 + ○ 336e04763143 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7648 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 7649 + │ args: jj next --edit 7650 + ○ 2830430ace23 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7651 + │ snapshot working copy 7652 + │ args: jj log 7653 + ○ bcf95d116310 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7654 + │ prev: 02702cffec6e -> editing 2d353c7be390 7655 + │ args: jj prev --edit --color always 7656 + ○ 81ce387110f5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7657 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 7658 + │ args: jj prev --edit --color always 7659 + ○ 19483c9bbde4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7660 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 7661 + │ args: jj prev --edit --color always 7662 + ○ 700dcf548eb5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7663 + │ prev: 4599f3e54870 -> editing 7443d2cca1bc 7664 + │ args: jj prev --edit --color always 7665 + ○ bd3219e17f17 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7666 + │ new empty commit 7667 + │ args: jj new --color always 7668 + ○ 326a0f768a0f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7669 + │ next: 7b3325ebc782 -> editing 7443d2cca1bc 7670 + │ args: jj next --edit --color always 7671 + ○ 9335cee4f0eb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7672 + │ next: 02702cffec6e -> editing 7b3325ebc782 7673 + │ args: jj next --edit --color always 7674 + ○ 54395aeea5a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7675 + │ next: 2d353c7be390 -> editing 02702cffec6e 7676 + │ args: jj next --edit --color always 7677 + ○ 799491fe5f54 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7678 + │ next: d12586fdc502 -> editing 2d353c7be390 7679 + │ args: jj next --edit --color always 7680 + ○ a9ee3831d8b7 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7681 + │ next: d648d9dc91ca -> editing d12586fdc502 7682 + │ args: jj next --edit --color always 7683 + ○ 0d20d5291b43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7684 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 7685 + │ args: jj next --edit --color always 7686 + ○ fd857d02cebe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7687 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 7688 + │ args: jj next --edit --color always 7689 + ○ cc6ad1b31b82 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7690 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 7691 + │ args: jj next --edit --color always 7692 + ○ a6d6df6a92bd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7693 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 7694 + │ args: jj next --edit --color always 7695 + ○ 659eee66e19c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7696 + │ next: 584796aea9d8 -> editing 8e967a8ded42 7697 + │ args: jj next --edit --color always 7698 + ○ d0b5f2fe74b0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7699 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 7700 + │ args: jj prev --edit --color always 7701 + ○ 73451c217bbf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7702 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 7703 + │ args: jj prev --edit --color always 7704 + ○ 93a1975e4a2b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7705 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 7706 + │ args: jj prev --edit --color always 7707 + ○ 77a8d5a85c01 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7708 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 7709 + │ args: jj prev --edit --color always 7710 + ○ 6aed2e405d8a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7711 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 7712 + │ args: jj prev --edit --color always 7713 + ○ 9a2468dda98b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7714 + │ prev: d12586fdc502 -> editing d648d9dc91ca 7715 + │ args: jj prev --edit --color always 7716 + ○ a9845c154b61 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7717 + │ prev: 2d353c7be390 -> editing d12586fdc502 7718 + │ args: jj prev --edit --color always 7719 + ○ 26b16d4d329d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7720 + │ prev: 02702cffec6e -> editing 2d353c7be390 7721 + │ args: jj prev --edit --color always 7722 + ○ 9e639bf10687 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7723 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 7724 + │ args: jj prev --edit --color always 7725 + ○ e75938ad06be eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7726 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 7727 + │ args: jj prev --edit --color always 7728 + ○ 154d18ff4be3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7729 + │ next: 7b3325ebc782 -> editing 7443d2cca1bc 7730 + │ args: jj next --edit --color always 7731 + ○ 97611ed444be eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7732 + │ next: 02702cffec6e -> editing 7b3325ebc782 7733 + │ args: jj next --edit --color always 7734 + ○ d326b076c178 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7735 + │ next: 2d353c7be390 -> editing 02702cffec6e 7736 + │ args: jj next --edit --color always 7737 + ○ 229ff65b11e9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7738 + │ next: d12586fdc502 -> editing 2d353c7be390 7739 + │ args: jj next --edit --color always 7740 + ○ f0efd6a397b3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7741 + │ prev: 2d353c7be390 -> editing d12586fdc502 7742 + │ args: jj prev --edit --color always 7743 + ○ 65ca5a954b7f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7744 + │ prev: 02702cffec6e -> editing 2d353c7be390 7745 + │ args: jj prev --edit --color always 7746 + ○ 48a7330a503b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7747 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 7748 + │ args: jj prev --edit --color always 7749 + ○ 059537c13271 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7750 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 7751 + │ args: jj prev --edit --color always 7752 + ○ 6762f0792516 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7753 + │ prev: c83ac2518973 -> editing 7443d2cca1bc 7754 + │ args: jj prev --edit --color always 7755 + ○ 35f7aeb9dbee eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 7756 + │ commit 4f46a9a3b714fdcad2ea83e60713b3910bd9925f 7757 + │ args: jj commit -m msg --color always 7758 + ○ 92128570ca7b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7759 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 7760 + │ args: jj next --edit --color always 7761 + ○ 28a4507815a4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7762 + │ next: 02702cffec6e -> editing 7b3325ebc782 7763 + │ args: jj next --edit --color always 7764 + ○ 890c5cabbbd5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7765 + │ next: 2d353c7be390 -> editing 02702cffec6e 7766 + │ args: jj next --edit --color always 7767 + ○ 724d8c1c8a0d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7768 + │ next: d12586fdc502 -> editing 2d353c7be390 7769 + │ args: jj next --edit --color always 7770 + ○ d1c7cc57a47f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7771 + │ next: d648d9dc91ca -> editing d12586fdc502 7772 + │ args: jj next --edit --color always 7773 + ○ c6a356814e90 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7774 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 7775 + │ args: jj next --edit --color always 7776 + ○ ca3f25829ea6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7777 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 7778 + │ args: jj next --edit --color always 7779 + ○ a7bfdfcb356a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7780 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 7781 + │ args: jj next --edit --color always 7782 + ○ 5487d1ef59a5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7783 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 7784 + │ args: jj prev --edit --color always 7785 + ○ 1488736338c7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7786 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 7787 + │ args: jj prev --edit --color always 7788 + ○ 4d5f07a1af43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7789 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 7790 + │ args: jj prev --edit --color always 7791 + ○ dd29242c3f33 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7792 + │ prev: d12586fdc502 -> editing d648d9dc91ca 7793 + │ args: jj prev --edit --color always 7794 + ○ af3199d24afe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7795 + │ prev: 2d353c7be390 -> editing d12586fdc502 7796 + │ args: jj prev --edit --color always 7797 + ○ 5f5e018d1fd1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7798 + │ prev: 02702cffec6e -> editing 2d353c7be390 7799 + │ args: jj prev --edit --color always 7800 + ○ d9f802be5cfb eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7801 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 7802 + │ args: jj prev --edit --color always 7803 + ○ abaf2ad6b6dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7804 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 7805 + │ args: jj prev --edit --color always 7806 + ○ 2541871b0c06 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7807 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 7808 + │ args: jj next --edit --color always 7809 + ○ 272b10b01813 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7810 + │ next: 02702cffec6e -> editing 7b3325ebc782 7811 + │ args: jj next --edit --color always 7812 + ○ fe99f6725576 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7813 + │ next: 2d353c7be390 -> editing 02702cffec6e 7814 + │ args: jj next --edit --color always 7815 + ○ 4b0e484fc47c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7816 + │ prev: 02702cffec6e -> editing 2d353c7be390 7817 + │ args: jj prev --edit --color always 7818 + ○ dc4839f675dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7819 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 7820 + │ args: jj prev --edit --color always 7821 + ○ e559ab536ad3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7822 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 7823 + │ args: jj prev --edit --color always 7824 + ○ 466323d191fa eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7825 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 7826 + │ args: jj next --edit --color always 7827 + ○ dc46a3d722ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7828 + │ next: 02702cffec6e -> editing 7b3325ebc782 7829 + │ args: jj next --edit --color always 7830 + ○ ee8bc69093a7 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7831 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 7832 + │ args: jj prev --edit --color always 7833 + ○ 703e4cb33297 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7834 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 7835 + │ args: jj prev --edit --color always 7836 + ○ 79548909f1d8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7837 + │ prev: 5e12535fc62e -> editing 4f46a9a3b714 7838 + │ args: jj prev --edit --color always 7839 + ○ 4062e885a791 eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 7840 + │ commit b30ff64921da4b2972e4493d039b6549cec96ffb 7841 + │ args: jj commit -m 'hello this is my message to you :) ' --color always 7842 + ○ 2cf737c2954d eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 7843 + │ commit 9cf52a9c549e7c3b16dded8a6f78bb354a3b62e5 7844 + │ args: jj commit -m aorsietnaoriestnoaiernstoaienrstoieanrostieanstoiaernstoiaenrstoienaorisentoaiesnrtoairesntoaiernstoieanrsotieanrsotienaoriesntoiaenrsotien --color always 7845 + ○ c5affee8b149 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7846 + │ commit f387f2b17733e7873f03c6c3bb40809e0075e667 7847 + │ args: jj commit -m 'hello this is my special box' --color always 7848 + ○ bea5432fd07b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7849 + │ commit 2aa53e699ccfb2f3ae9e7f880f0c59bfbc9567a3 7850 + │ args: jj commit -m 'this is my message :)' --color always 7851 + ○ 7deffc5d3758 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7852 + │ commit f08821057c490dc735b3afb66ec1ff13f6939340 7853 + │ args: jj commit -m 'message is centered successfully yay' --color always 7854 + ○ 5c45e9b5f29b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7855 + │ commit 24f20c3ec9492384fcd100013d3901a6483c477a 7856 + │ args: jj commit -m heyqqCq --color always 7857 + ○ e420cbd54c0a eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7858 + │ new empty commit 7859 + │ args: jj new --color always 7860 + ○ d10977dd23a1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7861 + │ new empty commit 7862 + │ args: jj new --color always 7863 + ○ 9763e9ec3d90 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7864 + │ commit cba27c8d1e154cc67c0aa9606ea578635187e1cb 7865 + │ args: jj commit -m 'message ' --color always 7866 + ○ 36b32fa3461f eli@eli-nixos-xps 3 months ago, lasted 5 milliseconds 7867 + │ commit ab22d4a9f486f28f45ab900bc29fd5c4b9094b51 7868 + │ args: jj commit -m 'hello this is a box' --color always 7869 + ○ 939266a0e6a0 eli@eli-nixos-xps 3 months ago, lasted 6 milliseconds 7870 + │ commit ec2f5045174e0f48baec7e3879f227ebc244c9c8 7871 + │ args: jj commit -m 'uy;yu;yu;yu' --color always 7872 + ○ b576316b8c25 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 7873 + │ new empty commit 7874 + │ args: jj new --color always 7875 + ○ 4acc65804797 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7876 + │ next: 529712756e2c -> editing 812a118be9e4 7877 + │ args: jj next --edit --color always 7878 + ○ 45a920b402a6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7879 + │ next: c3e259d4c40f -> editing 529712756e2c 7880 + │ args: jj next --edit --color always 7881 + ○ fc6952b1d168 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7882 + │ prev: 529712756e2c -> editing c3e259d4c40f 7883 + │ args: jj prev --edit --color always 7884 + ○ c4d3e6aab846 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7885 + │ prev: 812a118be9e4 -> editing 529712756e2c 7886 + │ args: jj prev --edit --color always 7887 + ○ ea455132406a eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7888 + │ next: 529712756e2c -> editing 812a118be9e4 7889 + │ args: jj next --edit --color always 7890 + ○ 4dd75d840609 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7891 + │ next: c3e259d4c40f -> editing 529712756e2c 7892 + │ args: jj next --edit --color always 7893 + ○ b813b95ab6fe eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7894 + │ prev: 529712756e2c -> editing c3e259d4c40f 7895 + │ args: jj prev --edit --color always 7896 + ○ 5090c4380409 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7897 + │ next: c3e259d4c40f -> editing 529712756e2c 7898 + │ args: jj next --edit --color always 7899 + ○ b6e907371166 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7900 + │ prev: 529712756e2c -> editing c3e259d4c40f 7901 + │ args: jj prev --edit --color always 7902 + ○ d089e7168df3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7903 + │ prev: 812a118be9e4 -> editing 529712756e2c 7904 + │ args: jj prev --edit --color always 7905 + ○ ff679449c3fe eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7906 + │ next: 529712756e2c -> editing 812a118be9e4 7907 + │ args: jj next --edit --color always 7908 + ○ 3432aeaa65cc eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 7909 + │ prev: 812a118be9e4 -> editing 529712756e2c 7910 + │ args: jj prev --edit --color always 7911 + ○ ed7c0142344c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7912 + │ next: 529712756e2c -> editing 812a118be9e4 7913 + │ args: jj next --edit --color always 7914 + ○ 9e5d19c832a1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7915 + │ next: c3e259d4c40f -> editing 529712756e2c 7916 + │ args: jj next --edit --color always 7917 + ○ 07c0d2fa4c26 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7918 + │ prev: 529712756e2c -> editing c3e259d4c40f 7919 + │ args: jj prev --edit --color always 7920 + ○ ff3c98e1f094 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7921 + │ prev: 812a118be9e4 -> editing 529712756e2c 7922 + │ args: jj prev --edit --color always 7923 + ○ 7701ea326a98 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7924 + │ next: 529712756e2c -> editing 812a118be9e4 7925 + │ args: jj next --edit --color always 7926 + ○ 648842226533 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7927 + │ next: c3e259d4c40f -> editing 529712756e2c 7928 + │ args: jj next --edit --color always 7929 + ○ b3efc9158284 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7930 + │ prev: 529712756e2c -> editing c3e259d4c40f 7931 + │ args: jj prev --edit --color always 7932 + ○ b30db7028cb0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7933 + │ prev: 812a118be9e4 -> editing 529712756e2c 7934 + │ args: jj prev --edit --color always 7935 + ○ 58f8f35f0c59 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7936 + │ next: 529712756e2c -> editing 812a118be9e4 7937 + │ args: jj next --edit --color always 7938 + ○ 3e337184c006 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7939 + │ prev: 812a118be9e4 -> editing 529712756e2c 7940 + │ args: jj prev --edit --color always 7941 + ○ 6837e102ec2d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7942 + │ next: 529712756e2c -> editing 812a118be9e4 7943 + │ args: jj next --edit --color always 7944 + ○ 74fe32ec91bb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7945 + │ prev: 812a118be9e4 -> editing 529712756e2c 7946 + │ args: jj prev --edit --color always 7947 + ○ 1cdd83d13b8b eli@eli-nixos-xps 3 months ago, lasted 26 seconds 7948 + │ Resolve conflicts in commit 89812fd9fe519674921bc7a055c3fbfdb6627c53 7949 + │ args: jj resolve 7950 + ○ 8b77e307548c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7951 + │ next: 529712756e2c -> editing 89812fd9fe51 7952 + │ args: jj next --edit --color always 7953 + ○ 865dd48a5308 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7954 + │ prev: 89812fd9fe51 -> editing 529712756e2c 7955 + │ args: jj prev --edit --color always 7956 + ○ e3d74708f7fa eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7957 + │ next: 529712756e2c -> editing 89812fd9fe51 7958 + │ args: jj next --edit --color always 7959 + ○ 8044b5f8756f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7960 + │ prev: 89812fd9fe51 -> editing 529712756e2c 7961 + │ args: jj prev --edit --color always 7962 + ○ f891c7dedbd5 eli@eli-nixos-xps 3 months ago, lasted 14 seconds 7963 + │ unsquash commit 4e7f1d7c6a19ceb88be8ade764618ade88f4e3c6 7964 + │ args: jj unsquash -i 7965 + ○ 26a792a10ede eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7966 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 7967 + │ args: jj next --edit --color always 7968 + ○ 9b33fe9b04cf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7969 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 7970 + │ args: jj prev --edit --color always 7971 + ○ 47116a073337 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7972 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 7973 + │ args: jj next --edit --color always 7974 + ○ 3c883cc7eb68 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7975 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 7976 + │ args: jj prev --edit --color always 7977 + ○ bac5b3cb41da eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7978 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 7979 + │ args: jj next --edit --color always 7980 + ○ 94dd56d26bdd eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7981 + │ next: c3e259d4c40f -> editing 52a595a66023 7982 + │ args: jj next --edit --color always 7983 + ○ b1407ca74bf5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7984 + │ prev: 52a595a66023 -> editing c3e259d4c40f 7985 + │ args: jj prev --edit --color always 7986 + ○ 189250d7ae78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7987 + │ next: c3e259d4c40f -> editing 52a595a66023 7988 + │ args: jj next --edit --color always 7989 + ○ 9def8b9728e0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7990 + │ prev: 52a595a66023 -> editing c3e259d4c40f 7991 + │ args: jj prev --edit --color always 7992 + ○ 7473fe0709ad eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7993 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 7994 + │ args: jj prev --edit --color always 7995 + ○ f77cc3de0175 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 7996 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 7997 + │ args: jj next --edit --color always 7998 + ○ d8a035ab73d8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 7999 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 8000 + │ args: jj prev --edit --color always 8001 + ○ 7e9c52564881 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8002 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 8003 + │ args: jj next --edit --color always 8004 + ○ ea5d1667d036 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8005 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 8006 + │ args: jj prev --edit --color always 8007 + ○ c662942c1581 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 8008 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 8009 + │ args: jj next --edit --color always 8010 + ○ aabb0cc3448d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8011 + │ next: c3e259d4c40f -> editing 52a595a66023 8012 + │ args: jj next --edit --color always 8013 + ○ 76e6780889f2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 8014 + │ prev: 52a595a66023 -> editing c3e259d4c40f 8015 + │ args: jj prev --edit --color always 8016 + ○ 4ade63236eaf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 8017 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 8018 + │ args: jj prev --edit --color always 8019 + ○ 5acecc077b14 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8020 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 8021 + │ args: jj next --edit --color always 8022 + ○ 4a08b9a3825c eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 8023 + │ snapshot working copy 8024 + │ args: jj show --color always 8025 + ○ 46eee48a6644 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 8026 + │ snapshot working copy 8027 + │ args: jj show --color always 8028 + ○ 53df8b08e15c eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 8029 + │ snapshot working copy 8030 + │ args: jj show --color always 8031 + ○ 96cddd289069 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8032 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8033 + │ args: jj prev --edit --color always 8034 + ○ b2a73f7bef1c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8035 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8036 + │ args: jj next --edit --color always 8037 + ○ 7fbf3b8537b9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8038 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8039 + │ args: jj prev --edit --color always 8040 + ○ dc12fa78fd71 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 8041 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8042 + │ args: jj next --edit --color always 8043 + ○ 2536ad8b1986 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 8044 + │ next: c3e259d4c40f -> editing 521c21d7e342 8045 + │ args: jj next --edit --color always 8046 + ○ d50789f34158 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 8047 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8048 + │ args: jj prev --edit --color always 8049 + ○ b62287a0dd09 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 8050 + │ next: c3e259d4c40f -> editing 521c21d7e342 8051 + │ args: jj next --edit --color always 8052 + ○ 2860cf74f393 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8053 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8054 + │ args: jj prev --edit --color always 8055 + ○ 1e7781ebaf4b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8056 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8057 + │ args: jj prev --edit --color always 8058 + ○ 66eaf786be63 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8059 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8060 + │ args: jj next --edit --color always 8061 + ○ bf1a2d5cc2d0 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8062 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8063 + │ args: jj prev --edit --color always 8064 + ○ 1830b4a30f34 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8065 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8066 + │ args: jj next --edit --color always 8067 + ○ 9a3e1dcb4acf eli@eli-nixos-xps 4 months ago, lasted 8 milliseconds 8068 + │ next: c3e259d4c40f -> editing 521c21d7e342 8069 + │ args: jj next --edit --color always 8070 + ○ 288e73db4714 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8071 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8072 + │ args: jj prev --edit --color always 8073 + ○ 8b9689bfc71a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8074 + │ next: c3e259d4c40f -> editing 521c21d7e342 8075 + │ args: jj next --edit --color always 8076 + ○ cce7d2d3304e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8077 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8078 + │ args: jj prev --edit --color always 8079 + ○ 0bded7ceeab2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8080 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8081 + │ args: jj prev --edit --color always 8082 + ○ 2fb76a244fb9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8083 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8084 + │ args: jj next --edit --color always 8085 + ○ 02652732f2b8 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8086 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8087 + │ args: jj prev --edit --color always 8088 + ○ 9d482485788b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8089 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8090 + │ args: jj next --edit --color always 8091 + ○ ddf0d71786dd eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8092 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8093 + │ args: jj prev --edit --color always 8094 + ○ 1eb5e9015218 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8095 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8096 + │ args: jj next --edit --color always 8097 + ○ 3c72afc3689a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8098 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8099 + │ args: jj prev --edit --color always 8100 + ○ 941686f7023e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8101 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8102 + │ args: jj next --edit --color always 8103 + ○ 1e57b6430fe2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8104 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8105 + │ args: jj prev --edit --color always 8106 + ○ c9be0ac314d7 eli@eli-nixos-xps 4 months ago, lasted 2 milliseconds 8107 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8108 + │ args: jj next --edit --color always 8109 + ○ acddfc4548e6 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8110 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8111 + │ args: jj prev --edit --color always 8112 + ○ 21114d1d41b6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8113 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8114 + │ args: jj next --edit --color always 8115 + ○ 625c40d0ae20 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8116 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8117 + │ args: jj prev --edit --color always 8118 + ○ 0f68dc615fda eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8119 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8120 + │ args: jj next --edit --color always 8121 + ○ 70921283c4d7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8122 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8123 + │ args: jj prev --edit --color always 8124 + ○ 0cd7f66b0653 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8125 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8126 + │ args: jj next --edit --color always 8127 + ○ 2d64a9b77df5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8128 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8129 + │ args: jj prev --edit --color always 8130 + ○ be1686f17364 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8131 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8132 + │ args: jj next --edit --color always 8133 + ○ 188e1b894a12 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8134 + │ next: c3e259d4c40f -> editing 521c21d7e342 8135 + │ args: jj next --edit --color always 8136 + ○ 6a1b77d070a4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8137 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8138 + │ args: jj prev --edit --color always 8139 + ○ 60bf96d15292 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8140 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8141 + │ args: jj prev --edit --color always 8142 + ○ 62d723ce7e9f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8143 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8144 + │ args: jj next --edit --color always 8145 + ○ ff1918f8c2e6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8146 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8147 + │ args: jj prev --edit --color always 8148 + ○ 4613299bb4f8 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8149 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8150 + │ args: jj next --edit --color always 8151 + ○ cb6eafe5f21e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8152 + │ next: c3e259d4c40f -> editing 521c21d7e342 8153 + │ args: jj next --edit --color always 8154 + ○ 265ec7e3d2f5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8155 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8156 + │ args: jj prev --edit --color always 8157 + ○ fbb272511232 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8158 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8159 + │ args: jj prev --edit --color always 8160 + ○ bb7005782ef8 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8161 + │ prev: ec72e9beb82b -> editing 2e8df5e76d5d 8162 + │ args: jj prev --edit --color always 8163 + ○ 07102904b180 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8164 + │ next: 7e7636eeb1af -> 2e8df5e76d5d 8165 + │ args: jj next --color always 8166 + ○ fdb5d068e295 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8167 + │ next: e9f6fe737058 -> 521c21d7e342 8168 + │ args: jj next --color always 8169 + ○ c9525b534aca eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8170 + │ next: 626e2b4b3c96 -> c3e259d4c40f 8171 + │ args: jj next --color always 8172 + ○ 93fd2ca99e91 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8173 + │ prev: c75315664272 -> 000000000000 8174 + │ args: jj prev --color always 8175 + ○ 96e53e4b0e04 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8176 + │ prev: 2e8df5e76d5d -> c3e259d4c40f 8177 + │ args: jj prev --color always 8178 + ○ a3e39073aa69 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8179 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8180 + │ args: jj next --edit --color always 8181 + ○ e750cff692c2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8182 + │ next: c3e259d4c40f -> editing 521c21d7e342 8183 + │ args: jj next --edit --color always 8184 + ○ 54121e08e440 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8185 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8186 + │ args: jj prev --edit --color always 8187 + ○ 5ca36e9b53bf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8188 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8189 + │ args: jj prev --edit --color always 8190 + ○ 6ec1aa19a2fa eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8191 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8192 + │ args: jj next --edit --color always 8193 + ○ a9d79456cf8d eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8194 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8195 + │ args: jj prev --edit --color always 8196 + ○ cb9d546b502f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8197 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8198 + │ args: jj next --edit --color always 8199 + ○ 14629b4019ec eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8200 + │ next: c3e259d4c40f -> editing 521c21d7e342 8201 + │ args: jj next --edit --color always 8202 + ○ 8930e8174138 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8203 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8204 + │ args: jj prev --edit --color always 8205 + ○ 298017db399e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8206 + │ next: c3e259d4c40f -> editing 521c21d7e342 8207 + │ args: jj next --edit --color always 8208 + ○ 8827ed343b41 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8209 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8210 + │ args: jj prev --edit --color always 8211 + ○ ec5f272eccd5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8212 + │ next: c3e259d4c40f -> editing 521c21d7e342 8213 + │ args: jj next --edit --color always 8214 + ○ 303f15a70400 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8215 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8216 + │ args: jj prev --edit --color always 8217 + ○ 3859b383769e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8218 + │ next: c3e259d4c40f -> editing 521c21d7e342 8219 + │ args: jj next --edit --color always 8220 + ○ 79c25421c6d9 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8221 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8222 + │ args: jj prev --edit --color always 8223 + ○ dc627b3c3795 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8224 + │ next: c3e259d4c40f -> editing 521c21d7e342 8225 + │ args: jj next --edit --color always 8226 + ○ 5a20d11d45e1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8227 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8228 + │ args: jj prev --edit --color always 8229 + ○ c10a13e84da0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8230 + │ next: c3e259d4c40f -> editing 521c21d7e342 8231 + │ args: jj next --edit --color always 8232 + ○ b305ee379579 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8233 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8234 + │ args: jj prev --edit --color always 8235 + ○ 24929ef49907 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8236 + │ next: c3e259d4c40f -> editing 521c21d7e342 8237 + │ args: jj next --edit --color always 8238 + ○ 1bf9595cca4b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8239 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8240 + │ args: jj prev --edit --color always 8241 + ○ 62035b395f15 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8242 + │ next: c3e259d4c40f -> editing 521c21d7e342 8243 + │ args: jj next --edit --color always 8244 + ○ 7044696a7592 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8245 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8246 + │ args: jj prev --edit --color always 8247 + ○ e551be4ea804 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8248 + │ next: c3e259d4c40f -> editing 521c21d7e342 8249 + │ args: jj next --edit --color always 8250 + ○ 0e125b60c0ae eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8251 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8252 + │ args: jj prev --edit --color always 8253 + ○ b0de9fef53de eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8254 + │ next: c3e259d4c40f -> editing 521c21d7e342 8255 + │ args: jj next --edit --color always 8256 + ○ 5ca83175b430 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8257 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8258 + │ args: jj prev --edit --color always 8259 + ○ 70f020c9b338 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8260 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8261 + │ args: jj prev --edit --color always 8262 + ○ c9a30a1eb29a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8263 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8264 + │ args: jj next --edit --color always 8265 + ○ b21771f68b6b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8266 + │ next: c3e259d4c40f -> editing 521c21d7e342 8267 + │ args: jj next --edit --color always 8268 + ○ 74336ca3ded1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8269 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8270 + │ args: jj prev --edit --color always 8271 + ○ 0ece8c7daaf3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8272 + │ next: c3e259d4c40f -> editing 521c21d7e342 8273 + │ args: jj next --edit --color always 8274 + ○ 7b092b927800 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8275 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8276 + │ args: jj prev --edit --color always 8277 + ○ a812c85e447a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8278 + │ next: c3e259d4c40f -> editing 521c21d7e342 8279 + │ args: jj next --edit --color always 8280 + ○ 4e595ed0176b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8281 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8282 + │ args: jj prev --edit --color always 8283 + ○ 0e2a4b24272c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8284 + │ next: c3e259d4c40f -> editing 521c21d7e342 8285 + │ args: jj next --edit --color always 8286 + ○ 14c734dca028 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8287 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8288 + │ args: jj prev --edit --color always 8289 + ○ c7f02038a6a1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8290 + │ next: c3e259d4c40f -> editing 521c21d7e342 8291 + │ args: jj next --edit --color always 8292 + ○ a3ec5d8c505e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8293 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8294 + │ args: jj prev --edit --color always 8295 + ○ fa5c3595a0c5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8296 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8297 + │ args: jj prev --edit --color always 8298 + ○ a50c053607d9 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8299 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8300 + │ args: jj next --edit --color always 8301 + ○ 1550645799d8 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8302 + │ next: c3e259d4c40f -> editing 521c21d7e342 8303 + │ args: jj next --edit --color always 8304 + ○ 37b626086506 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8305 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8306 + │ args: jj prev --edit --color always 8307 + ○ b11a2b31d1fc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8308 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8309 + │ args: jj prev --edit --color always 8310 + ○ c76e2c1ba3d5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8311 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8312 + │ args: jj next --edit --color always 8313 + ○ ddae82c9c2b0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8314 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8315 + │ args: jj prev --edit --color always 8316 + ○ 4e4824142865 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8317 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8318 + │ args: jj next --edit --color always 8319 + ○ 59900065451e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8320 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8321 + │ args: jj prev --edit --color always 8322 + ○ 8c95241bd3de eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8323 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8324 + │ args: jj next --edit --color always 8325 + ○ 47b1b1650d83 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8326 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8327 + │ args: jj prev --edit --color always 8328 + ○ b1321c4dd3c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8329 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8330 + │ args: jj next --edit --color always 8331 + ○ 6c9c18c93f62 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8332 + │ next: c3e259d4c40f -> editing 521c21d7e342 8333 + │ args: jj next --edit --color always 8334 + ○ 5f5db1d8a732 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8335 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8336 + │ args: jj prev --edit --color always 8337 + ○ 0adf0f399fe6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8338 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8339 + │ args: jj prev --edit --color always 8340 + ○ eb2d1230ddab eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8341 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8342 + │ args: jj next --edit --color always 8343 + ○ 4fc71c8b882c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8344 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8345 + │ args: jj prev --edit --color always 8346 + ○ f1c9cb8377b5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8347 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8348 + │ args: jj next --edit --color always 8349 + ○ a499bf3496d5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8350 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8351 + │ args: jj prev --edit --color always 8352 + ○ 89dbc96c27f7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8353 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8354 + │ args: jj next --edit --color always 8355 + ○ 0e0eb171574f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8356 + │ next: c3e259d4c40f -> editing 521c21d7e342 8357 + │ args: jj next --edit --color always 8358 + ○ 3a339a49d855 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8359 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8360 + │ args: jj prev --edit --color always 8361 + ○ be038bce99ee eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8362 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8363 + │ args: jj prev --edit --color always 8364 + ○ c275a93a9fdf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8365 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8366 + │ args: jj next --edit --color always 8367 + ○ 1a162eec5853 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8368 + │ next: c3e259d4c40f -> editing 521c21d7e342 8369 + │ args: jj next --edit --color always 8370 + ○ a0553eceaf86 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8371 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8372 + │ args: jj prev --edit --color always 8373 + ○ f13ef21a91fd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8374 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8375 + │ args: jj prev --edit --color always 8376 + ○ 45555b272b38 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8377 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8378 + │ args: jj next --edit --color always 8379 + ○ 9a3d1cb3a616 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8380 + │ next: c3e259d4c40f -> editing 521c21d7e342 8381 + │ args: jj next --edit --color always 8382 + ○ b6acf5153748 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8383 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8384 + │ args: jj prev --edit --color always 8385 + ○ acc7561596ea eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8386 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8387 + │ args: jj prev --edit --color always 8388 + ○ 552c8cae9b4f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8389 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8390 + │ args: jj next --edit --color always 8391 + ○ d4ce5209c1ae eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8392 + │ next: c3e259d4c40f -> editing 521c21d7e342 8393 + │ args: jj next --edit --color always 8394 + ○ ee6a71692233 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8395 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8396 + │ args: jj prev --edit --color always 8397 + ○ eb1aff4779b9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8398 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8399 + │ args: jj prev --edit --color always 8400 + ○ bb7776dc84b3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8401 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 8402 + │ args: jj next --edit --color always 8403 + ○ cbb5b3dd8bbc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8404 + │ next: c3e259d4c40f -> editing 521c21d7e342 8405 + │ args: jj next --edit --color always 8406 + ○ 8cfc90db4225 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8407 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 8408 + │ args: jj prev --edit --color always 8409 + ○ 227d2056026b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8410 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 8411 + │ args: jj prev --edit --color always 8412 + ○ 3f2f9f0acdf2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8413 + │ snapshot working copy 8414 + │ args: jj log 8415 + ○ ce9b59ecd88f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8416 + │ snapshot working copy 8417 + │ args: jj log --color always 8418 + ○ bd500d890bdc eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8419 + │ commit 90f2e6343227cd1e1b548125720cfa540c1ea99b 8420 + │ args: jj commit -m 'coloured output doesn\'t crash' 8421 + ○ b6227f6ffda3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8422 + │ next: c3e259d4c40f -> editing 90f2e6343227 8423 + │ args: jj next --edit --color always 8424 + ○ 8dde3b915363 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8425 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8426 + │ args: jj prev --edit --color always 8427 + ○ db850233e2c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8428 + │ next: c3e259d4c40f -> editing 90f2e6343227 8429 + │ args: jj next --edit --color always 8430 + ○ cc9b8d8bd163 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8431 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8432 + │ args: jj prev --edit --color always 8433 + ○ 76658edd2e06 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8434 + │ next: c3e259d4c40f -> editing 90f2e6343227 8435 + │ args: jj next --edit --color always 8436 + ○ 08535b0a2712 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8437 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8438 + │ args: jj prev --edit --color always 8439 + ○ 2ea5ebd7e56b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8440 + │ next: c3e259d4c40f -> editing 90f2e6343227 8441 + │ args: jj next --edit 8442 + ○ 8ae69b1ed672 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8443 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8444 + │ args: jj prev --edit 8445 + ○ cf8779e0f3d4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8446 + │ next: c3e259d4c40f -> editing 90f2e6343227 8447 + │ args: jj next --edit 8448 + ○ ff800600031d eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8449 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8450 + │ args: jj prev --edit 8451 + ○ 338e61aff388 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8452 + │ next: c3e259d4c40f -> editing 90f2e6343227 8453 + │ args: jj next --edit 8454 + ○ c12bdbdc91e4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8455 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8456 + │ args: jj prev --edit 8457 + ○ 9c0e28d573e0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8458 + │ next: c3e259d4c40f -> editing 90f2e6343227 8459 + │ args: jj next --edit 8460 + ○ f9a529943492 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8461 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8462 + │ args: jj prev --edit 8463 + ○ f184bbd7591a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8464 + │ next: c3e259d4c40f -> editing 90f2e6343227 8465 + │ args: jj next --edit 8466 + ○ af7185cc0530 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8467 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8468 + │ args: jj prev --edit 8469 + ○ ff437a3c151f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8470 + │ next: c3e259d4c40f -> editing 90f2e6343227 8471 + │ args: jj next --edit 8472 + ○ 76c08bd4cd7e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8473 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8474 + │ args: jj prev --edit 8475 + ○ 71802ff474fe eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8476 + │ next: c3e259d4c40f -> editing 90f2e6343227 8477 + │ args: jj next --edit 8478 + ○ 6bbff410b809 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8479 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 8480 + │ args: jj prev --edit 8481 + ○ 74055f627673 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8482 + │ undo operation 37033e64433ec9ffeb78b8b2385317546db529f3e598bfac36841a82e26247bf6867dadcddc658ac4a600d1d3c893d7ef7e8900e6823d6e9f0ebdd5b4b5abad9 8483 + │ args: jj undo 8484 + ○ 37033e64433e eli@eli-nixos-xps 4 months ago, lasted 6 seconds 8485 + │ edit commit 90f2e6343227cd1e1b548125720cfa540c1ea99b 8486 + │ args: jj diffedit 8487 + ○ 5ff0b2824157 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8488 + │ snapshot working copy 8489 + │ args: jj diffedit 8490 + ○ 4fc1e13a19ff eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8491 + │ snapshot working copy 8492 + ○ 14424d5306c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8493 + │ undo operation 7dcfbc3780b280cc11bb2fb0d5cf9075b3f7fac3aac71059ebede06347dc7f8ef3799ecbbdf785ac8a9f0df052808bbdfbb6cb164ee7709bd443fdb6b2f878d7 8494 + │ args: jj undo 8495 + ○ 7dcfbc3780b2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8496 + │ undo operation 95b602744a8fe36708030676b2e1f40ee58f40cbb3e4beb523d0fd8da02d7b718cea7a72308154641afd811cbaa5188c4c68c9f2c6c273c401b01ddae7b889c8 8497 + │ args: jj undo 8498 + ○ 95b602744a8f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8499 + │ undo operation 72c1ec8c7d392bd9987f66baa8588e47db18fe62f9122925955838336a4e6d25810e1ce633490b04c5ce2441f734b09b237341a03aa07755ba03b17849fee228 8500 + │ args: jj undo 8501 + ○ 72c1ec8c7d39 eli@eli-nixos-xps 4 months ago, lasted 24 seconds 8502 + │ unsquash commit 0b23d59660dde14672186533f83410c817fe2253 8503 + │ args: jj unsquash 8504 + ○ c7dd5622e710 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8505 + │ edit commit 0b23d59660dde14672186533f83410c817fe2253 8506 + ○ 2b09d8e6834c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8507 + │ edit commit c3e259d4c40f5266866c071ebd0ae26ed345db8b 8508 + ○ 61ecf73f26dd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8509 + │ edit commit 0b23d59660dde14672186533f83410c817fe2253 8510 + ○ fe8405f4bb65 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8511 + │ undo operation ef2d82b718a7c7459a43bdd8165a187559d14b379a8290cf20f057d1de7adf07954c426dfbae3bc4475c714684c09ceabe2366de2d6f4446f623c9116c942132 8512 + │ args: jj undo 8513 + ○ ef2d82b718a7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8514 + │ unsquash commit 5c4af7c8dcc487218176b163a768f2d9dac7af94 8515 + │ args: jj unsquash 8516 + ○ 1102529644a1 eli@eli-nixos-xps 4 months ago, lasted 7 seconds 8517 + │ squash commits into 64547a51e86a41425f448e5d7cfbf8c0e8d0e850 8518 + │ args: jj squash 8519 + ○ da2252f9bf53 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8520 + │ next: 64547a51e86a -> editing f51e5ba830a7 8521 + │ args: jj next --edit 8522 + ○ f4c4048bf879 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8523 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8524 + │ args: jj prev --edit 8525 + ○ cd9dc6cc1075 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8526 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8527 + │ args: jj prev --edit 8528 + ○ a5184f545767 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8529 + │ next: f51e5ba830a7 -> editing a2072c652a16 8530 + │ args: jj next --edit 8531 + ○ 55b7036330ca eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8532 + │ next: 64547a51e86a -> editing f51e5ba830a7 8533 + │ args: jj next --edit 8534 + ○ df0cf200dd78 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8535 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8536 + │ args: jj prev --edit 8537 + ○ 2b0256951a63 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8538 + │ next: 64547a51e86a -> editing f51e5ba830a7 8539 + │ args: jj next --edit 8540 + ○ 99161323247e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8541 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8542 + │ args: jj prev --edit 8543 + ○ b63f9ee657b1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8544 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8545 + │ args: jj prev --edit 8546 + ○ a3be6b60cc83 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8547 + │ next: f51e5ba830a7 -> editing a2072c652a16 8548 + │ args: jj next --edit 8549 + ○ 1672dd057331 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8550 + │ next: 64547a51e86a -> editing f51e5ba830a7 8551 + │ args: jj next --edit 8552 + ○ 322e3e21b114 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8553 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8554 + │ args: jj prev --edit 8555 + ○ 2b91c9115816 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8556 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8557 + │ args: jj prev --edit 8558 + ○ d13b9782f928 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8559 + │ next: f51e5ba830a7 -> editing a2072c652a16 8560 + │ args: jj next --edit 8561 + ○ c06406de9bec eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8562 + │ next: 64547a51e86a -> editing f51e5ba830a7 8563 + │ args: jj next --edit 8564 + ○ 191f39b50a03 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8565 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8566 + │ args: jj prev --edit 8567 + ○ 7ddb6f9f7f7d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8568 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8569 + │ args: jj prev --edit 8570 + ○ e9fe8388c223 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8571 + │ next: f51e5ba830a7 -> editing a2072c652a16 8572 + │ args: jj next --edit 8573 + ○ 56320a7efdbf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8574 + │ next: 64547a51e86a -> editing f51e5ba830a7 8575 + │ args: jj next --edit 8576 + ○ 8683910c46cc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8577 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8578 + │ args: jj prev --edit 8579 + ○ 3228ecd65eed eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8580 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8581 + │ args: jj prev --edit 8582 + ○ bc86e91f8c45 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8583 + │ next: f51e5ba830a7 -> editing a2072c652a16 8584 + │ args: jj next --edit 8585 + ○ b14a7306430c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8586 + │ next: 64547a51e86a -> editing f51e5ba830a7 8587 + │ args: jj next --edit 8588 + ○ 19d12c365774 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8589 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8590 + │ args: jj prev --edit 8591 + ○ 091d4d50f84c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8592 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8593 + │ args: jj prev --edit 8594 + ○ 29827c5ab0a6 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8595 + │ next: f51e5ba830a7 -> editing a2072c652a16 8596 + │ args: jj next --edit 8597 + ○ 35f4390f3a70 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8598 + │ next: 64547a51e86a -> editing f51e5ba830a7 8599 + │ args: jj next --edit 8600 + ○ 13645836db4a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8601 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8602 + │ args: jj prev --edit 8603 + ○ dfcfae826731 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8604 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8605 + │ args: jj prev --edit 8606 + ○ 9d3ae4dfd316 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8607 + │ prev: c57d0697f3ae -> editing a2072c652a16 8608 + │ args: jj prev --edit 8609 + ○ eb127aefcc53 eli@eli-nixos-xps 4 months ago, lasted 10 milliseconds 8610 + │ next: caf7abf92a9c -> a2072c652a16 8611 + │ args: jj next 8612 + ○ f11f0cfc71ae eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8613 + │ next: 39a5a9614fd5 -> f51e5ba830a7 8614 + │ args: jj next 8615 + ○ 73862d6982de eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8616 + │ next: 4cbf3b07bf3d -> 64547a51e86a 8617 + │ args: jj next 8618 + ○ ade9498294ef eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8619 + │ prev: d4994ad7ce03 -> 000000000000 8620 + │ args: jj prev 8621 + ○ dd78e1c58afd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8622 + │ prev: a2072c652a16 -> 64547a51e86a 8623 + │ args: jj prev 8624 + ○ c79708df4de1 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8625 + │ next: f51e5ba830a7 -> editing a2072c652a16 8626 + │ args: jj next --edit 8627 + ○ 9b445ebb6437 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8628 + │ next: 64547a51e86a -> editing f51e5ba830a7 8629 + │ args: jj next --edit 8630 + ○ 871ec534bb1f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8631 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8632 + │ args: jj prev --edit 8633 + ○ 14c42d029fe4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8634 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8635 + │ args: jj prev --edit 8636 + ○ 87f675434e11 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8637 + │ next: f51e5ba830a7 -> editing a2072c652a16 8638 + │ args: jj next --edit 8639 + ○ 21c92e2c9f01 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8640 + │ next: 64547a51e86a -> editing f51e5ba830a7 8641 + │ args: jj next --edit 8642 + ○ 2409bfee4f6c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8643 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8644 + │ args: jj prev --edit 8645 + ○ dd19a36d22c7 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8646 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8647 + │ args: jj prev --edit 8648 + ○ 62f5810c773f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8649 + │ prev: 5ef01377ca95 -> editing a2072c652a16 8650 + │ args: jj prev --edit 8651 + ○ da7e56d58b3c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8652 + │ next: 151d99729d26 -> a2072c652a16 8653 + │ args: jj next 8654 + ○ 220709d07840 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8655 + │ next: 555dbf1a5cd9 -> f51e5ba830a7 8656 + │ args: jj next 8657 + ○ fa7978636887 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8658 + │ next: 39844045939a -> 64547a51e86a 8659 + │ args: jj next 8660 + ○ 81a2a721b4cd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8661 + │ prev: a8704a770ccb -> 000000000000 8662 + │ args: jj prev 8663 + ○ 0638337e8d02 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8664 + │ prev: b15bb146134a -> 64547a51e86a 8665 + │ args: jj prev 8666 + ○ 598662ae7891 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8667 + │ prev: 36c97ec52784 -> f51e5ba830a7 8668 + │ args: jj prev 8669 + ○ 74975067964a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8670 + │ next: 61f560878ce6 -> a2072c652a16 8671 + │ args: jj next 8672 + ○ f9865c28dfbf eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8673 + │ next: 8e95b7cbec8a -> f51e5ba830a7 8674 + │ args: jj next 8675 + ○ 155954502aeb eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8676 + │ next: dc8628ac7fb9 -> 64547a51e86a 8677 + │ args: jj next 8678 + ○ 6cb61099ba02 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8679 + │ prev: c46b7a59af90 -> 000000000000 8680 + │ args: jj prev 8681 + ○ cc6f33eb1752 eli@eli-nixos-xps 4 months ago, lasted 9 milliseconds 8682 + │ prev: a2072c652a16 -> 64547a51e86a 8683 + │ args: jj prev 8684 + ○ 8e1c59c3eec1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8685 + │ next: f51e5ba830a7 -> editing a2072c652a16 8686 + │ args: jj next --edit 8687 + ○ 9e3141f83a60 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8688 + │ next: 64547a51e86a -> editing f51e5ba830a7 8689 + │ args: jj next --edit 8690 + ○ 43bba422810f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8691 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8692 + │ args: jj prev --edit 8693 + ○ 3c5b99c130b4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8694 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8695 + │ args: jj prev --edit 8696 + ○ 8f2218e5bb63 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8697 + │ next: f51e5ba830a7 -> editing a2072c652a16 8698 + │ args: jj next --edit 8699 + ○ 523ea5b27511 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8700 + │ next: 64547a51e86a -> editing f51e5ba830a7 8701 + │ args: jj next --edit 8702 + ○ f958c12f5df4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8703 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8704 + │ args: jj prev --edit 8705 + ○ c2d6aa7af072 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8706 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8707 + │ args: jj prev --edit 8708 + ○ e1e751302fc2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8709 + │ next: f51e5ba830a7 -> editing a2072c652a16 8710 + │ args: jj next --edit 8711 + ○ 4062f3277d8b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8712 + │ next: 64547a51e86a -> editing f51e5ba830a7 8713 + │ args: jj next --edit 8714 + ○ 5741e220973b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8715 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 8716 + │ args: jj prev --edit 8717 + ○ babb19f96584 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8718 + │ prev: a2072c652a16 -> editing f51e5ba830a7 8719 + │ args: jj prev --edit 8720 + ○ f501c83a8861 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8721 + │ next: f51e5ba830a7 -> editing a2072c652a16 8722 + │ args: jj next --edit 8723 + ○ 1262f53eeed9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8724 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 8725 + ○ 4058d89dd0d3 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8726 + │ edit commit a2072c652a1632397e60893d00dce335e68d23db 8727 + ○ cdcdfb3b4076 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8728 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 8729 + ○ 32206ee89d15 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8730 + │ edit commit 64547a51e86a41425f448e5d7cfbf8c0e8d0e850 8731 + ○ f5ad5e5e25e7 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8732 + │ edit commit a2072c652a1632397e60893d00dce335e68d23db 8733 + ○ e33b2d6d28b9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8734 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 8735 + ○ fcbfae064d05 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8736 + │ prev: 2a579b88cc84 -> 64547a51e86a 8737 + │ args: jj prev 8738 + ○ a6688eaa5bfa eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8739 + │ prev: d2af1208fb95 -> f51e5ba830a7 8740 + │ args: jj prev 8741 + ○ 3f91609c5a9b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8742 + │ next: 588904613ee2 -> a2072c652a16 8743 + │ args: jj next 8744 + ○ 6fe7d9668d9a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8745 + │ next: 9a4dd50233bb -> f51e5ba830a7 8746 + │ args: jj next 8747 + ○ 55ad0592346f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8748 + │ next: 9810d90dfee7 -> 64547a51e86a 8749 + │ args: jj next 8750 + ○ aba55fc904ac eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8751 + │ prev: 50b4191124b3 -> 000000000000 8752 + │ args: jj prev 8753 + ○ 6cdd740bbd12 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8754 + │ next: 554e68636db9 -> 64547a51e86a 8755 + │ args: jj next 8756 + ○ 6c88d131b5bd eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8757 + │ prev: 535261cfc413 -> 000000000000 8758 + │ args: jj prev 8759 + ○ 8e0e50968c93 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8760 + │ prev: 823b477c9542 -> 64547a51e86a 8761 + │ args: jj prev 8762 + ○ 27c60b494456 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8763 + │ prev: 435c7c05ab27 -> f51e5ba830a7 8764 + │ args: jj prev 8765 + ○ ae4bd7ac3f86 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8766 + │ next: 3b6e49cd68f5 -> a2072c652a16 8767 + │ args: jj next 8768 + ○ ef00896e0c21 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8769 + │ next: c60e81ca444e -> f51e5ba830a7 8770 + │ args: jj next 8771 + ○ d96977f233d1 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8772 + │ next: e8507bb34355 -> 64547a51e86a 8773 + │ args: jj next 8774 + ○ 7bde8707bb1a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8775 + │ prev: 065946532d85 -> 000000000000 8776 + │ args: jj prev 8777 + ○ 4b8d268b7cbf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8778 + │ prev: 0fe70a6f26e1 -> 64547a51e86a 8779 + │ args: jj prev 8780 + ○ 44d1ab3c4a9f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8781 + │ prev: 83fa2287b4dd -> f51e5ba830a7 8782 + │ args: jj prev 8783 + ○ 8120b0742e20 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8784 + │ next: c5a2fbf8234f -> a2072c652a16 8785 + │ args: jj next 8786 + ○ 2aab219c506a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8787 + │ next: c8a615582bab -> f51e5ba830a7 8788 + │ args: jj next 8789 + ○ 06c63230bc24 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8790 + │ next: c86c2ee7e6ec -> 64547a51e86a 8791 + │ args: jj next 8792 + ○ 1f2aea1ec600 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8793 + │ prev: e8800a74d093 -> 000000000000 8794 + │ args: jj prev 8795 + ○ f1254e69306d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8796 + │ prev: 82b3d3a6987c -> 64547a51e86a 8797 + │ args: jj prev 8798 + ○ 843ff0a62d5a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8799 + │ prev: 1be6b4c9df74 -> f51e5ba830a7 8800 + │ args: jj prev 8801 + ○ 40ccea6d1e1b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8802 + │ next: aa9ce0dae6c8 -> a2072c652a16 8803 + │ args: jj next 8804 + ○ cfbf87cc77c2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8805 + │ next: 33b8af188493 -> f51e5ba830a7 8806 + │ args: jj next 8807 + ○ 65399009038a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8808 + │ next: c1191b2985df -> 64547a51e86a 8809 + │ args: jj next 8810 + ○ 20851e25f4d4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8811 + │ prev: d6b537f80f8f -> 000000000000 8812 + │ args: jj prev 8813 + ○ 846c128d9cde eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8814 + │ prev: a9664e6f8ac3 -> 64547a51e86a 8815 + │ args: jj prev 8816 + ○ 1dd7ced8579c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8817 + │ prev: ef63a727a961 -> f51e5ba830a7 8818 + │ args: jj prev 8819 + ○ f56cc38fe954 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8820 + │ next: e2cbacd9c678 -> a2072c652a16 8821 + │ args: jj next 8822 + ○ 49a42d91d0e3 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8823 + │ next: 0552920ed3df -> f51e5ba830a7 8824 + │ args: jj next 8825 + ○ a25154bf44f2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8826 + │ next: 9d86882ee61c -> 64547a51e86a 8827 + │ args: jj next 8828 + ○ 1dcde0f1715d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8829 + │ prev: 8cc8fd810b07 -> 000000000000 8830 + │ args: jj prev 8831 + ○ e5634c0f1e40 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8832 + │ prev: 6c87d695c928 -> 64547a51e86a 8833 + │ args: jj prev 8834 + ○ 20916278b671 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8835 + │ prev: 58948485c266 -> f51e5ba830a7 8836 + │ args: jj prev 8837 + ○ fb85019b5ac5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8838 + │ next: 447e56e222ff -> a2072c652a16 8839 + │ args: jj next 8840 + ○ 2cef60a92165 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8841 + │ prev: 21c27850c6c5 -> f51e5ba830a7 8842 + │ args: jj prev 8843 + ○ f30c326099f4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8844 + │ commit 916b45f151ea0e1d7fc957aa3b73a36b27c4412b 8845 + │ args: jj commit -m remove-hi2 8846 + ○ 10ab3b46b3a4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8847 + │ snapshot working copy 8848 + │ args: jj commit -m remove-hi2 8849 + ○ 7c77e8d8c00d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8850 + │ commit cc1302d6212a7278c448c19e55a2b6b071a1f528 8851 + │ args: jj commit -m hi2 8852 + ○ 5a28b20206ec eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8853 + │ snapshot working copy 8854 + │ args: jj commit -m hi2 8855 + ○ c34268584efe eli@eli-nixos-xps 4 months ago, lasted 2 milliseconds 8856 + │ commit f0b286a7aca9ad647c597793c629037db53f8a0a 8857 + │ args: jj commit -m hi 8858 + ○ 424b51f2ffff eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8859 + │ snapshot working copy 8860 + │ args: jj commit -m hi 8861 + ○ 130c403d1f1a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 8862 + │ add workspace 'default' 8863 + ○ 9b1addb6dfde eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 8864 + │ initialize repo 8865 + ○ 000000000000 root() 8866 + @ 1aa6cb33ec48 eli@eli-nixos-xps now, lasted 24 milliseconds 8867 + │ snapshot working copy 8868 + │ args: jj op log 8869 + ○ b258b22536d6 eli@eli-nixos-xps now, lasted 14 milliseconds 8870 + │ snapshot working copy 8871 + │ args: jj op log 8872 + ○ 57d4291a2076 eli@eli-nixos-xps 1 second ago, lasted 5 milliseconds 8873 + │ snapshot working copy 8874 + │ args: jj op log 8875 + ○ 9205cf08044f eli@eli-nixos-xps 8 seconds ago, lasted 12 milliseconds 8876 + │ snapshot working copy 8877 + │ args: jj op log 8878 + ○ 460252461519 eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 8879 + │ snapshot working copy 8880 + │ args: jj log '\'\'' --color never 8881 + ○ 964ae29c7913 eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 8882 + │ squash commits into a0ce6fa0be8e64263eadcad52b75a00a18a8885b 8883 + │ args: jj squash -u --keep-emptied --from ysqoykszlsnxrywolxlqkoymyvpqlvlk --into ysqoykszlsnxrywolxlqkoymyvpqlvlk- out --color always 8884 + ○ bba8e8d57c47 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 8885 + │ next: 2363ae5ab231 -> editing a0ce6fa0be8e 8886 + │ args: jj next --color always 8887 + ○ 7cb2c2e8a585 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 8888 + │ prev: a0ce6fa0be8e -> editing 2363ae5ab231 8889 + │ args: jj prev --color always 8890 + ○ 335ba3266871 eli@eli-nixos-xps 2 weeks ago, lasted 6 milliseconds 8891 + │ squash commits into b338bc8dc0c21b91b32a44f623c605d71b320ad2 8892 + │ args: jj squash -u --keep-emptied --from qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --into 'qtosxvrzslqvtlqvtqknmwrnkvwwxtxv+' out --color always 8893 + ○ e9e214594767 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 8894 + │ squash commits into 53d1cc4fa2102e8b979b2cb1afc47bc94d6706ce 8895 + │ args: jj squash -u --keep-emptied --from ttnnqpsnpmzyzyknxuyulowqupkuosln --into rp other.txt --color always 8896 + ○ ed1435a56fea eli@eli-nixos-xps 2 weeks ago, lasted 3 milliseconds 8897 + │ squash commits into 0ed6f400a7fe9f18bd6be9191566b843feeb3de8 8898 + │ args: jj squash -u --from quylxlopoutqqnnmvqnkvonqorumqlmr --into tt other.txt --color always 8899 + ○ 66d14904c141 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 8900 + │ squash commits into 67658784491c5587b0540232d5c8568e7144783c 8901 + │ args: jj squash -u --from qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --into qu other.txt --color always 8902 + ○ 5eeb2c173e09 eli@eli-nixos-xps 2 weeks ago, lasted 4 milliseconds 8903 + │ snapshot working copy 8904 + │ args: jj log --color always 8905 + ○ 09dc515a1cc8 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 8906 + │ edit commit bf02b5576646f44cf67abc49b67f4b45a42097ef 8907 + │ args: jj edit qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --color always 8908 + ○ a995cd747985 eli@eli-nixos-xps 2 weeks ago, lasted 2 milliseconds 8909 + │ squash commits into 1cfd1811b6dcadb6acd9477bc12819199e8e3a0e 8910 + │ args: jj squash -u --from npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --into qt out --color always 8911 + ○ 56762757775f eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 8912 + │ edit commit 67658784491c5587b0540232d5c8568e7144783c 8913 + │ args: jj edit quylxlopoutqqnnmvqnkvonqorumqlmr --color always 8914 + ○ 29c7a360dccc eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 8915 + │ next: 3bda68c2a942 -> 693b4825353b 8916 + │ args: jj next --color always 8917 + ○ 6be9eb402e9b eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 8918 + │ next: a438c4f17590 -> d91f530fb94d 8919 + │ args: jj next --color always 8920 + ○ 9e6438c6722d eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 8921 + │ next: 5009a23d4bdd -> 1cfd1811b6dc 8922 + │ args: jj next --color always 8923 + ○ 0c8393d14206 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 8924 + │ prev: 906d4922d561 -> 67658784491c 8925 + │ args: jj prev --color always 8926 + ○ 98c9055f93b0 eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 8927 + │ new empty commit 8928 + │ args: jj new qtosxvrzslqvtlqvtqknmwrnkvwwxtxv --color always 8929 + ○ 3219ec9a8351 eli@eli-nixos-xps 2 weeks ago, lasted 5 milliseconds 8930 + │ squash commits into 7ef1b7744065cc261eb1026aed0e1407fe422de9 8931 + │ args: jj squash -u --from oyzsrxumlmpqkkstmvxvrpqoxlkyworx --into 'oyzsrxumlmpqkkstmvxvrpqoxlkyworx+' out --color always 8932 + ○ b5e11fc618de eli@eli-nixos-xps 2 weeks ago, lasted 6 milliseconds 8933 + │ squash commits into 3087be21cfbf5ad78bb1f771dd6523ef8d7562b8 8934 + │ args: jj squash -u --from kzywtkmuupzznplpprrykuvlwmkqmrvr --into 'kzywtkmuupzznplpprrykuvlwmkqmrvr+' out --color always 8935 + ○ 01271a3c89ac eli@eli-nixos-xps 2 weeks ago, lasted 1 millisecond 8936 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 8937 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 8938 + ○ fd0e6b1507f0 eli@eli-nixos-xps 2 weeks ago, lasted less than a microsecond 8939 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 8940 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 8941 + ○ 7dc6666b9f38 eli@eli-nixos-xps 2 weeks ago, lasted 10 milliseconds 8942 + │ new empty commit 8943 + │ args: jj new -r kzywtkmuupzznplpprrykuvlwmkqmrvr --color always 8944 + ○ 248099eb8db7 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 8945 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 8946 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 8947 + ○ 83a60fc53360 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 8948 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 8949 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 8950 + ○ 37e031891dc1 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 8951 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 8952 + │ args: jj edit uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 8953 + ○ 3b6e3661144b eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 8954 + │ edit commit ce91d7442632f4eaed4621d98070a2e3107c05f7 8955 + │ args: jj edit wmynupyqyqykvxrpqznkzpklutomzmso --color always 8956 + ○ a2462a97cdf8 eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 8957 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 8958 + │ args: jj edit uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 8959 + ○ 4c95b3be64a6 eli@eli-nixos-xps 2 months ago, lasted 10 milliseconds 8960 + │ new empty commit 8961 + │ args: jj new uvlyoxnunxnyuwsyzwvyuqxotnnsqytv --color always 8962 + ○ e19d8e977392 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 8963 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 8964 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 8965 + ○ c6586be5eae9 eli@eli-nixos-xps 2 months ago, lasted 1 millisecond 8966 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 8967 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 8968 + ○ 9530da5f7cbe eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 8969 + │ edit commit 666abfb74435de95464dc22f07bf32dde888ad98 8970 + │ args: jj edit npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --color always 8971 + ○ 28e31908331a eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 8972 + │ edit commit 3087be21cfbf5ad78bb1f771dd6523ef8d7562b8 8973 + │ args: jj edit oyzsrxumlmpqkkstmvxvrpqoxlkyworx --color always 8974 + ○ fa935a3d0a33 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 8975 + │ edit commit 666abfb74435de95464dc22f07bf32dde888ad98 8976 + │ args: jj edit npwnrktmmxtuzqyzrumrxvsrtqqlrrzo --color always 8977 + ○ 888e3751d383 eli@eli-nixos-xps 2 months ago, lasted less than a microsecond 8978 + │ edit commit 113ab1626900f6184ed8197aff68f5edc1cdb3b0 8979 + │ args: jj edit mpowuslrzyvtvzyunpnovrnzruoynwst --color always 8980 + ○ 78e092d9b74c eli@eli-nixos-xps 2 months ago, lasted 9 milliseconds 8981 + │ edit commit 2fc62b3eff46ed86eba83e2f827097f3bdb58ae7 8982 + │ args: jj edit nuoqwkxvtsrmsvwwtpnsxuowlkulklnn --color always 8983 + ○ 16d6fad68ead eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8984 + │ edit commit a94612a861b95b987d55a2180cc986cc156c5c59 8985 + │ args: jj edit uv --color always 8986 + ○ fc2e02323b8f eli@eli-nixos-xps 3 months ago, lasted 7 milliseconds 8987 + │ squash commits into 2e166a9e68b021c23215e5ff5bf668eec02e3a54 8988 + │ args: jj squash -u --from @ --into uv _build/log --color always 8989 + ○ ad25412d8de5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8990 + │ edit commit 0af36e0760fd3ebbb6499d4acf0bcb6b27ee34d2 8991 + │ args: jj edit w --color always 8992 + ○ 2d5c8cae1b99 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8993 + │ next: 3087be21cfbf -> editing 666abfb74435 8994 + │ args: jj next --edit --color always 8995 + ○ 786a9fa74050 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 8996 + │ prev: 666abfb74435 -> editing 3087be21cfbf 8997 + │ args: jj prev --edit --color always 8998 + ○ a8165c930747 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 8999 + │ next: 3087be21cfbf -> editing 666abfb74435 9000 + │ args: jj next --edit --color always 9001 + ○ dcdfeee35ec6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9002 + │ next: 712823596dcc -> editing 3087be21cfbf 9003 + │ args: jj next --edit --color always 9004 + ○ 0aa5ae82702f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9005 + │ prev: 3087be21cfbf -> editing 712823596dcc 9006 + │ args: jj prev --edit --color always 9007 + ○ 1b13131d6cc4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9008 + │ prev: 666abfb74435 -> editing 3087be21cfbf 9009 + │ args: jj prev --edit --color always 9010 + ○ 258637f53d41 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9011 + │ prev: 113ab1626900 -> editing 666abfb74435 9012 + │ args: jj prev --edit --color always 9013 + ○ 11912376e984 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9014 + │ prev: 2e166a9e68b0 -> editing 113ab1626900 9015 + │ args: jj prev --edit --color always 9016 + ○ ff890e6e6592 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9017 + │ prev: 0af36e0760fd -> editing 2e166a9e68b0 9018 + │ args: jj prev --edit --color always 9019 + ○ 2b4593a858d2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9020 + │ next: 2e166a9e68b0 -> editing 0af36e0760fd 9021 + │ args: jj next --edit --color always 9022 + ○ d17a1e590a3f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9023 + │ prev: 0af36e0760fd -> editing 2e166a9e68b0 9024 + │ args: jj prev --edit --color always 9025 + ○ f422c0c5c3de eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9026 + │ snapshot working copy 9027 + │ args: jj show -s --color-words --color always 9028 + ○ 7ddb663b74b4 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9029 + │ new empty commit 9030 + │ args: jj new --color always 9031 + ○ 76b7deff03c6 eli@eli-nixos-xps 3 months ago, lasted 4 seconds 9032 + │ squash commits into 83c9fe8f3609bc4f130878c3ff2ef14e9d3bfdcf 9033 + │ args: jj squash -i --into nu 9034 + ○ 03329123583b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9035 + │ edit commit db6379e864d55c794c0b4b5d13d4e0cc5dfa0739 9036 + │ args: jj edit w --color always 9037 + ○ 5f0093686ca2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9038 + │ describe commit 2b39b40aae4f99d771d091407d90ec9649e080a3 9039 + │ args: jj describe -m bup --color always 9040 + ○ 20be04cfc0e9 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 9041 + │ new empty commit 9042 + │ args: jj new --color always 9043 + ○ d3b6d5e3d064 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9044 + │ prev: d01037ae2e80 -> editing 666abfb74435 9045 + │ args: jj prev --edit --color always 9046 + ○ 349e673347fb eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9047 + │ new empty commit 9048 + │ args: jj new --color always 9049 + ○ 2bfb4079736b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9050 + │ next: 3087be21cfbf -> editing 666abfb74435 9051 + │ args: jj next --edit --color always 9052 + ○ 0c11364097e3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9053 + │ prev: 666abfb74435 -> editing 3087be21cfbf 9054 + │ args: jj prev --color always 9055 + ○ 3e7b4b0cc939 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9056 + │ prev: 113ab1626900 -> editing 666abfb74435 9057 + │ args: jj prev --edit --color always 9058 + ○ 7d4c36d94b56 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9059 + │ prev: db6379e864d5 -> editing 113ab1626900 9060 + │ args: jj prev --edit 9061 + ○ fa424cf68eeb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9062 + │ next: 113ab1626900 -> editing db6379e864d5 9063 + │ args: jj next --edit 9064 + ○ 79b8e2bc30ef eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 9065 + │ next: 666abfb74435 -> editing 113ab1626900 9066 + │ args: jj next --edit 9067 + ○ 1587355b6c5f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9068 + │ next: 3087be21cfbf -> editing 666abfb74435 9069 + │ args: jj next --edit 9070 + ○ c278f0fa21bb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9071 + │ next: 712823596dcc -> editing 3087be21cfbf 9072 + │ args: jj next --edit 9073 + ○ 8f753eb3a9ac eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 9074 + │ prev: 3087be21cfbf -> editing 712823596dcc 9075 + │ args: jj prev --edit --color always 9076 + ○ 15bc149a7d8c eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 9077 + │ prev: 666abfb74435 -> editing 3087be21cfbf 9078 + │ args: jj prev --edit --color always 9079 + ○ e30069685cf9 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 9080 + │ prev: 113ab1626900 -> editing 666abfb74435 9081 + │ args: jj prev --edit --color always 9082 + ○ 7b1edde5af99 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9083 + │ prev: db6379e864d5 -> editing 113ab1626900 9084 + │ args: jj prev --edit --color always 9085 + ○ 45705d925f9a eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 9086 + │ next: 113ab1626900 -> editing db6379e864d5 9087 + │ args: jj next --edit --color always 9088 + ○ a8db560c9d0c eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9089 + │ snapshot working copy 9090 + │ args: jj show -s --color-words --color always 9091 + ○ 429820142033 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9092 + │ create branch bbbbb pointing to commit 9898af24583487a77e38b1d89a7ccbc8cb804ce6 9093 + │ args: jj branch create bbbbb --color always 9094 + ○ 5ba2dfbe66ce eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9095 + │ next: 666abfb74435 -> editing 9898af245834 9096 + │ args: jj next --edit --color always 9097 + ○ b7b58d162e03 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9098 + │ next: 3087be21cfbf -> editing 666abfb74435 9099 + │ args: jj next --edit --color always 9100 + ○ 275580757e74 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9101 + │ next: 712823596dcc -> editing 3087be21cfbf 9102 + │ args: jj next --edit --color always 9103 + ○ 6c6e1dc6b352 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9104 + │ next: d91f530fb94d -> editing 712823596dcc 9105 + │ args: jj next --edit --color always 9106 + ○ 57ed5b2072ff eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9107 + │ next: 1cfd1811b6dc -> editing d91f530fb94d 9108 + │ args: jj next --edit --color always 9109 + ○ b57f64c76216 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9110 + │ next: 67658784491c -> editing 1cfd1811b6dc 9111 + │ args: jj next --edit --color always 9112 + ○ 8a8dea05f3d2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9113 + │ next: 0ed6f400a7fe -> editing 67658784491c 9114 + │ args: jj next --edit --color always 9115 + ○ 1994506c5e3a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9116 + │ prev: 67658784491c -> editing 0ed6f400a7fe 9117 + │ args: jj prev --edit --color always 9118 + ○ 9bf9f1421a3b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9119 + │ prev: 1cfd1811b6dc -> editing 67658784491c 9120 + │ args: jj prev --edit --color always 9121 + ○ e0bb9d322ba2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9122 + │ create branches this, is, a, branch pointing to commit 1cfd1811b6dcadb6acd9477bc12819199e8e3a0e 9123 + │ args: jj branch create this is a branch --color always 9124 + ○ 252138ae1cd8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9125 + │ next: 67658784491c -> editing 1cfd1811b6dc 9126 + │ args: jj next --edit --color always 9127 + ○ e99e164440b9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9128 + │ next: 0ed6f400a7fe -> editing 67658784491c 9129 + │ args: jj next --edit --color always 9130 + ○ 25bd3735f935 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9131 + │ next: 53d1cc4fa210 -> editing 0ed6f400a7fe 9132 + │ args: jj next --edit --color always 9133 + ○ 559ec5226325 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9134 + │ next: 3c4573dda23c -> editing 53d1cc4fa210 9135 + │ args: jj next --edit --color always 9136 + ○ 2ab188cdcdc0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9137 + │ next: 2374647001dd -> editing 3c4573dda23c 9138 + │ args: jj next --edit --color always 9139 + ○ efe90e27f405 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9140 + │ create branches hi, there, new pointing to commit 2374647001dd1762b4e0f8d0db8be208bb360cda 9141 + │ args: jj branch create hi there new --color always 9142 + ○ 4bc60dab857e eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9143 + │ create branch hi there new pointing to commit 2374647001dd1762b4e0f8d0db8be208bb360cda 9144 + │ args: jj branch create 'hi there new' --color always 9145 + ○ 0414a317e206 eli@eli-nixos-xps 3 months ago, lasted 20 milliseconds 9146 + │ parallelize 2 commits 9147 + │ args: jj parallelize mz u 9148 + ○ a305f317ec92 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9149 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 9150 + │ args: jj next --edit --color always 9151 + ○ 4fedbeb42e62 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9152 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 9153 + │ args: jj next --edit --color always 9154 + ○ 15667da8f18b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9155 + │ next: 3eae36a2605b -> editing a32d34abf5b2 9156 + │ args: jj next --edit --color always 9157 + ○ 2f268bb632ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9158 + │ next: d648d9dc91ca -> editing 3eae36a2605b 9159 + │ args: jj next --edit --color always 9160 + ○ e940c6193eaf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9161 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 9162 + │ args: jj prev --edit --color always 9163 + ○ 84845cc4b86f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9164 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 9165 + │ args: jj prev --edit --color always 9166 + ○ bc45b5036023 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9167 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 9168 + │ args: jj prev --edit --color always 9169 + ○ bb60f151dd46 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9170 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 9171 + │ args: jj prev --edit --color always 9172 + ○ 1ad26ac4b641 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9173 + │ prev: e817aa28318f -> editing d24fcbff9fa8 9174 + │ args: jj prev --edit --color always 9175 + ○ 4a0ce54a4475 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9176 + │ prev: bf3bd93157fe -> editing e817aa28318f 9177 + │ args: jj prev --edit --color always 9178 + ○ 4a8940cbcec2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9179 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 9180 + │ args: jj prev --edit --color always 9181 + ○ 3ec11bf5422a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9182 + │ next: bf3bd93157fe -> editing cf157ef807a2 9183 + │ args: jj next --edit --color always 9184 + ○ ec63814f5707 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9185 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 9186 + │ args: jj prev --edit --color always 9187 + ○ faddc25ac42b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9188 + │ prev: 156f77d97c30 -> editing cf157ef807a2 9189 + │ args: jj prev --edit --color always 9190 + ○ 31e587b2be70 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9191 + │ next: cf157ef807a2 -> editing 156f77d97c30 9192 + │ args: jj next --edit --color always 9193 + ○ 9d6d4ab6cc14 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9194 + │ prev: 156f77d97c30 -> editing cf157ef807a2 9195 + │ args: jj prev --edit --color always 9196 + ○ f6b9368a4746 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9197 + │ next: cf157ef807a2 -> editing 156f77d97c30 9198 + │ args: jj next --edit --color always 9199 + ○ 563fd20a458b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9200 + │ prev: 156f77d97c30 -> editing cf157ef807a2 9201 + │ args: jj prev --edit --color always 9202 + ○ 1adb6b2f0988 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9203 + │ next: cf157ef807a2 -> editing 156f77d97c30 9204 + │ args: jj next --edit --color always 9205 + ○ 816a49fa1a7f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9206 + │ prev: 156f77d97c30 -> editing cf157ef807a2 9207 + │ args: jj prev --edit --color always 9208 + ○ a22b90a04709 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9209 + │ prev: b774cec816ba -> editing 156f77d97c30 9210 + │ args: jj prev --edit --color always 9211 + ○ 57d7a57bf61b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9212 + │ prev: a39ba96d6e4a -> editing b774cec816ba 9213 + │ args: jj prev --edit --color always 9214 + ○ c799390764ff eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9215 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 9216 + │ args: jj prev --edit --color always 9217 + ○ 43d5156255fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9218 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 9219 + │ args: jj prev --edit --color always 9220 + ○ 08b198fcf701 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9221 + │ next: 48d266b0f74f -> editing cc8d0eb60492 9222 + │ args: jj next --edit --color always 9223 + ○ 4d554590ef6a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9224 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 9225 + │ args: jj next --edit --color always 9226 + ○ d65b71043139 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9227 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 9228 + │ args: jj prev --edit --color always 9229 + ○ 2d6b4a603251 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9230 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 9231 + │ args: jj prev --edit --color always 9232 + ○ 9f57bcc4b3db eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9233 + │ prev: 950186d3e70f -> editing cc8d0eb60492 9234 + │ args: jj prev --edit --color always 9235 + ○ 08c379b74531 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9236 + │ prev: 39cdf2fc7a87 -> editing 950186d3e70f 9237 + │ args: jj prev --edit --color always 9238 + ○ d396260f8c53 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9239 + │ prev: 80a38dbcd596 -> editing 39cdf2fc7a87 9240 + │ args: jj prev --edit --color always 9241 + ○ fd71c4dd2d7b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9242 + │ snapshot working copy 9243 + │ args: jj show -s --color-words --color always 9244 + ○ e632f97d2fe8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9245 + │ snapshot working copy 9246 + │ args: jj show -s --color-words --color always 9247 + ○ 6f13cdbeed87 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9248 + │ next: 39cdf2fc7a87 -> editing fd28c730f4d3 9249 + │ args: jj next 9250 + ○ b535d7aa56f1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9251 + ├─╮ resolve concurrent operations 9252 + │ │ args: jj workspace update-stale 9253 + ○ │ 9450c37c8d8b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9254 + │ │ prev: 00f79c0a5121 -> editing 39cdf2fc7a87 9255 + │ │ args: jj prev --edit --ignore-working-copy 9256 + │ ○ 4f0292379492 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9257 + ├─╯ snapshot working copy 9258 + │ args: jj workspace update-stale 9259 + ○ a5a9b2acc7f1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9260 + │ prev: 57e7b64925e9 -> editing 00f79c0a5121 9261 + │ args: jj prev --edit --ignore-working-copy 9262 + ○ bb620e294aa3 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9263 + │ next: f32811cc6777 -> 00f79c0a5121 9264 + │ args: jj next 9265 + ○ ee63ce2ef6de eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9266 + │ next: ffca284d7e01 -> 39cdf2fc7a87 9267 + │ args: jj next 9268 + ○ 14ae25d705cc eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9269 + │ prev: 00f79c0a5121 -> 950186d3e70f 9270 + │ args: jj prev 9271 + ○ ec9b85fc9bf6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9272 + │ next: 39cdf2fc7a87 -> editing 00f79c0a5121 9273 + │ args: jj next 9274 + ○ 0ecc7d7b6eff eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9275 + │ describe commit cbdf80f7ada85a7da05ab201579988efc06a0c3b 9276 + │ args: jj desc -m prev 9277 + ○ 76c126ec0e56 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9278 + │ prev: d0cf97fd3caf -> editing cbdf80f7ada8 9279 + │ args: jj prev --edit 9280 + ○ 4502b37c14d6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9281 + │ prev: a0ab6bfb0a4e -> editing d0cf97fd3caf 9282 + │ args: jj prev --edit 9283 + ○ 2bbc4cea9b9f eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9284 + │ next: 6c2f0428c83c -> d0cf97fd3caf 9285 + │ args: jj next 9286 + ○ a5bc30a9ee58 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9287 + │ next: 04e66f53c455 -> cbdf80f7ada8 9288 + │ args: jj next 9289 + ○ 022a9fc105fa eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9290 + │ prev: d0cf97fd3caf -> 950186d3e70f 9291 + │ args: jj prev 9292 + ○ f92f8686a067 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9293 + │ next: cbdf80f7ada8 -> editing d0cf97fd3caf 9294 + │ args: jj next --edit 9295 + ○ fd684cdc80dd eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 9296 + │ snapshot working copy 9297 + │ args: jj log 9298 + ○ b71f4f2ce3fd eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9299 + │ prev: 538360f87be6 -> editing 2739bea98abf 9300 + │ args: jj prev --edit 9301 + ○ 26f2982f8ff4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9302 + │ next: 2739bea98abf -> editing 538360f87be6 9303 + │ args: jj next 9304 + ○ c3a21beee0e2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9305 + │ prev: 538360f87be6 -> editing 2739bea98abf 9306 + │ args: jj prev --edit 9307 + ○ 54e2ac2eef1d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9308 + │ next: 2739bea98abf -> editing 538360f87be6 9309 + │ args: jj next --edit 9310 + ○ 849604ee1706 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9311 + │ prev: c8595354cb7a -> editing 2739bea98abf 9312 + │ args: jj prev --edit 9313 + ○ 48ddf5b28eb2 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9314 + │ next: f70c33fb46e9 -> 2739bea98abf 9315 + │ args: jj next 9316 + ○ 3613dac0c79d eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9317 + │ prev: 538360f87be6 -> 950186d3e70f 9318 + │ args: jj prev 9319 + ○ ae8799cecf51 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9320 + │ snapshot working copy 9321 + │ args: jj log 9322 + ○ 43a812c24ca6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9323 + │ next: 2739bea98abf -> editing e629aa0beb6f 9324 + │ args: jj next --edit --color always 9325 + ○ e9eb4884d047 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9326 + │ next: 950186d3e70f -> editing 2739bea98abf 9327 + │ args: jj next --edit --color always 9328 + ○ a1c3280321ff eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9329 + │ next: cc8d0eb60492 -> editing 950186d3e70f 9330 + │ args: jj next --edit --color always 9331 + ○ 9e4d57b19352 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9332 + │ next: 48d266b0f74f -> editing cc8d0eb60492 9333 + │ args: jj next --edit --color always 9334 + ○ 1f8e3257b5e8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9335 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 9336 + │ args: jj next --edit --color always 9337 + ○ ef285e8c067b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9338 + │ next: b774cec816ba -> editing a39ba96d6e4a 9339 + │ args: jj next --edit --color always 9340 + ○ 5e776f76b494 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9341 + │ next: 156f77d97c30 -> editing b774cec816ba 9342 + │ args: jj next --edit --color always 9343 + ○ c02974809780 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9344 + │ next: cf157ef807a2 -> editing 156f77d97c30 9345 + │ args: jj next --edit --color always 9346 + ○ 6aeefa8a4593 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9347 + │ next: bf3bd93157fe -> editing cf157ef807a2 9348 + │ args: jj next --edit --color always 9349 + ○ c78dee0f42ed eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9350 + │ next: e817aa28318f -> editing bf3bd93157fe 9351 + │ args: jj next --edit --color always 9352 + ○ 00ce5e4e97e9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9353 + │ next: d24fcbff9fa8 -> editing e817aa28318f 9354 + │ args: jj next --edit --color always 9355 + ○ a0e5c8fb9c9c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9356 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 9357 + │ args: jj next --edit --color always 9358 + ○ 0ce3eca5b8a2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9359 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 9360 + │ args: jj next --edit --color always 9361 + ○ 16680f6f40a0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9362 + │ next: 3eae36a2605b -> editing a32d34abf5b2 9363 + │ args: jj next --edit --color always 9364 + ○ 04dcf237dd58 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9365 + │ next: d648d9dc91ca -> editing 3eae36a2605b 9366 + │ args: jj next --edit --color always 9367 + ○ 86d9781ce752 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9368 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 9369 + │ args: jj next --edit --color always 9370 + ○ e6ad5d901058 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9371 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 9372 + │ args: jj next --edit --color always 9373 + ○ 4b4c46cc97a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9374 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 9375 + │ args: jj next --edit --color always 9376 + ○ af6616a13a41 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9377 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 9378 + │ args: jj next --edit --color always 9379 + ○ 15c89fa2923d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9380 + │ next: 584796aea9d8 -> editing 8e967a8ded42 9381 + │ args: jj next --edit --color always 9382 + ○ 71245d17ae92 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9383 + │ next: 812a118be9e4 -> editing 584796aea9d8 9384 + │ args: jj next --edit --color always 9385 + ○ d8d83a770ba0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9386 + │ prev: 584796aea9d8 -> editing 812a118be9e4 9387 + │ args: jj prev --edit --color always 9388 + ○ a7dfe070528d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9389 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 9390 + │ args: jj prev --edit --color always 9391 + ○ 8f6203d67481 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9392 + │ next: 584796aea9d8 -> editing 8e967a8ded42 9393 + │ args: jj next --edit --color always 9394 + ○ 3844c0accb43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9395 + │ next: 812a118be9e4 -> editing 584796aea9d8 9396 + │ args: jj next --edit --color always 9397 + ○ bf03f81bd215 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9398 + │ next: 529712756e2c -> editing 812a118be9e4 9399 + │ args: jj next --edit --color always 9400 + ○ f71210c3a9ac eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9401 + │ next: c3e259d4c40f -> editing 529712756e2c 9402 + │ args: jj next --edit --color always 9403 + ○ ca30c30cdaac eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9404 + │ prev: 529712756e2c -> editing c3e259d4c40f 9405 + │ args: jj prev --edit --color always 9406 + ○ 36afe4c90738 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9407 + │ prev: 812a118be9e4 -> editing 529712756e2c 9408 + │ args: jj prev --edit --color always 9409 + ○ 04b8a11951b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9410 + │ prev: 584796aea9d8 -> editing 812a118be9e4 9411 + │ args: jj prev --edit --color always 9412 + ○ c9a0e9352945 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9413 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 9414 + │ args: jj prev --edit --color always 9415 + ○ 33e4cf9a8c5a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9416 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 9417 + │ args: jj prev --edit --color always 9418 + ○ 0ace05f77c15 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9419 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 9420 + │ args: jj prev --edit --color always 9421 + ○ 0dd120209c78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9422 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 9423 + │ args: jj prev --edit --color always 9424 + ○ 4ff2838fd673 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9425 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 9426 + │ args: jj prev --edit --color always 9427 + ○ c446d64f6e57 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9428 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 9429 + │ args: jj prev --edit --color always 9430 + ○ fe51570365d3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9431 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 9432 + │ args: jj prev --edit --color always 9433 + ○ ffdb38aeb725 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9434 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 9435 + │ args: jj prev --edit --color always 9436 + ○ 87e7808d6086 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9437 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 9438 + │ args: jj prev --edit --color always 9439 + ○ 8b723248c32f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9440 + │ prev: e817aa28318f -> editing d24fcbff9fa8 9441 + │ args: jj prev --edit --color always 9442 + ○ f4900f770668 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9443 + │ prev: bf3bd93157fe -> editing e817aa28318f 9444 + │ args: jj prev --edit --color always 9445 + ○ ca8a04a2670b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9446 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 9447 + │ args: jj prev --edit --color always 9448 + ○ c7cdbc94d17a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9449 + │ prev: 156f77d97c30 -> editing cf157ef807a2 9450 + │ args: jj prev --edit --color always 9451 + ○ 8708472e53b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9452 + │ prev: b774cec816ba -> editing 156f77d97c30 9453 + │ args: jj prev --edit --color always 9454 + ○ 230beee56654 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9455 + │ prev: a39ba96d6e4a -> editing b774cec816ba 9456 + │ args: jj prev --edit --color always 9457 + ○ 3916a82697dc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9458 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 9459 + │ args: jj prev --edit --color always 9460 + ○ 5b16958deed0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9461 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 9462 + │ args: jj prev --edit --color always 9463 + ○ 30b6e795010a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9464 + │ prev: 950186d3e70f -> editing cc8d0eb60492 9465 + │ args: jj prev --edit --color always 9466 + ○ 7783bd02df79 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9467 + │ prev: 2739bea98abf -> editing 950186d3e70f 9468 + │ args: jj prev --edit --color always 9469 + ○ 5019447bafc7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9470 + │ prev: e629aa0beb6f -> editing 2739bea98abf 9471 + │ args: jj prev --edit --color always 9472 + ○ ab7a5d65a236 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9473 + │ next: 2739bea98abf -> editing e629aa0beb6f 9474 + │ args: jj next --edit --color always 9475 + ○ 0203c0ab8c71 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9476 + │ next: 950186d3e70f -> editing 2739bea98abf 9477 + │ args: jj next --edit --color always 9478 + ○ 1791bd99ee86 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9479 + │ next: cc8d0eb60492 -> editing 950186d3e70f 9480 + │ args: jj next --edit --color always 9481 + ○ 4c660456add4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9482 + │ next: 48d266b0f74f -> editing cc8d0eb60492 9483 + │ args: jj next --edit --color always 9484 + ○ 2dae0304e4e6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9485 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 9486 + │ args: jj next --edit --color always 9487 + ○ 9cb76a44bf2c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9488 + │ next: b774cec816ba -> editing a39ba96d6e4a 9489 + │ args: jj next --edit --color always 9490 + ○ 9564a95365d6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9491 + │ next: 156f77d97c30 -> editing b774cec816ba 9492 + │ args: jj next --edit --color always 9493 + ○ aed3a70e08ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9494 + │ next: cf157ef807a2 -> editing 156f77d97c30 9495 + │ args: jj next --edit --color always 9496 + ○ 05f03e647c49 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9497 + │ next: bf3bd93157fe -> editing cf157ef807a2 9498 + │ args: jj next --edit --color always 9499 + ○ fb2b1c611179 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9500 + │ next: e817aa28318f -> editing bf3bd93157fe 9501 + │ args: jj next --edit --color always 9502 + ○ 898993d0d61c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9503 + │ next: d24fcbff9fa8 -> editing e817aa28318f 9504 + │ args: jj next --edit --color always 9505 + ○ 68977ec2a373 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9506 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 9507 + │ args: jj next --edit --color always 9508 + ○ f47a3c49f528 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9509 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 9510 + │ args: jj next --edit --color always 9511 + ○ 55fe64da60b9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9512 + │ next: 3eae36a2605b -> editing a32d34abf5b2 9513 + │ args: jj next --edit --color always 9514 + ○ 22b43d1c0a10 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9515 + │ next: d648d9dc91ca -> editing 3eae36a2605b 9516 + │ args: jj next --edit --color always 9517 + ○ 7f4d84bc88fc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9518 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 9519 + │ args: jj next --edit --color always 9520 + ○ 40c6fa4eb49c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9521 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 9522 + │ args: jj next --edit --color always 9523 + ○ 44b0fe87fa8a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9524 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 9525 + │ args: jj next --edit --color always 9526 + ○ acd75bfd909c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9527 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 9528 + │ args: jj next --edit --color always 9529 + ○ f1e37ba8caa4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9530 + │ next: 584796aea9d8 -> editing 8e967a8ded42 9531 + │ args: jj next --edit --color always 9532 + ○ 62442200497c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9533 + │ next: 812a118be9e4 -> editing 584796aea9d8 9534 + │ args: jj next --edit --color always 9535 + ○ 0ae375aea5ad eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9536 + │ next: 529712756e2c -> editing 812a118be9e4 9537 + │ args: jj next --edit --color always 9538 + ○ 41b60c427523 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9539 + │ next: c3e259d4c40f -> editing 529712756e2c 9540 + │ args: jj next --edit --color always 9541 + ○ f0e9c43dea62 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9542 + │ prev: 529712756e2c -> editing c3e259d4c40f 9543 + │ args: jj prev --edit --color always 9544 + ○ 7ee17f8aa9ab eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9545 + │ prev: 812a118be9e4 -> editing 529712756e2c 9546 + │ args: jj prev --edit --color always 9547 + ○ 1d28f629181c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9548 + │ prev: 584796aea9d8 -> editing 812a118be9e4 9549 + │ args: jj prev --edit --color always 9550 + ○ c3d50c44867f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9551 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 9552 + │ args: jj prev --edit --color always 9553 + ○ 7faf8be2d4f0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9554 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 9555 + │ args: jj prev --edit --color always 9556 + ○ 753c326c66da eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9557 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 9558 + │ args: jj prev --edit --color always 9559 + ○ 5a6e66a29a56 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9560 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 9561 + │ args: jj prev --edit --color always 9562 + ○ 43916dfb6ec8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9563 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 9564 + │ args: jj prev --edit --color always 9565 + ○ 829c8aa7e9f5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9566 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 9567 + │ args: jj prev --edit --color always 9568 + ○ 17daf9b8aa80 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9569 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 9570 + │ args: jj prev --edit --color always 9571 + ○ e177f2ace6e5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9572 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 9573 + │ args: jj prev --edit --color always 9574 + ○ 66cc060576bd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9575 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 9576 + │ args: jj next --edit --color always 9577 + ○ 0feedee2fcaf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9578 + │ next: 3eae36a2605b -> editing a32d34abf5b2 9579 + │ args: jj next --edit --color always 9580 + ○ 624e61c02e78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9581 + │ next: d648d9dc91ca -> editing 3eae36a2605b 9582 + │ args: jj next --edit --color always 9583 + ○ ba1de8899c87 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9584 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 9585 + │ args: jj next --edit --color always 9586 + ○ 9f10a8550e4f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9587 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 9588 + │ args: jj next --edit --color always 9589 + ○ 64b510079b24 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9590 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 9591 + │ args: jj next --edit --color always 9592 + ○ 25f9533d41a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9593 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 9594 + │ args: jj next --edit --color always 9595 + ○ 3db7940af9ab eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9596 + │ next: 584796aea9d8 -> editing 8e967a8ded42 9597 + │ args: jj next --edit --color always 9598 + ○ 2563dcbb9d63 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9599 + │ next: 812a118be9e4 -> editing 584796aea9d8 9600 + │ args: jj next --edit --color always 9601 + ○ c05559d8b93e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9602 + │ next: 529712756e2c -> editing 812a118be9e4 9603 + │ args: jj next --edit --color always 9604 + ○ 723744e1a91f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9605 + │ next: c3e259d4c40f -> editing 529712756e2c 9606 + │ args: jj next --edit --color always 9607 + ○ c8092d5af20d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9608 + │ prev: 529712756e2c -> editing c3e259d4c40f 9609 + │ args: jj prev --edit --color always 9610 + ○ a05ecdb3e0eb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9611 + │ prev: 812a118be9e4 -> editing 529712756e2c 9612 + │ args: jj prev --edit --color always 9613 + ○ 81b2a0acf74d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9614 + │ prev: 584796aea9d8 -> editing 812a118be9e4 9615 + │ args: jj prev --edit --color always 9616 + ○ 4dbb928a3f3d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9617 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 9618 + │ args: jj prev --edit --color always 9619 + ○ 7696f68b745b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9620 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 9621 + │ args: jj prev --edit --color always 9622 + ○ f0f976791366 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9623 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 9624 + │ args: jj prev --edit --color always 9625 + ○ a0f1a6265e62 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9626 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 9627 + │ args: jj prev --edit --color always 9628 + ○ 663a2010711f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9629 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 9630 + │ args: jj prev --edit --color always 9631 + ○ e1cb99ed5cb1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9632 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 9633 + │ args: jj prev --edit --color always 9634 + ○ 6f0e51018998 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9635 + │ prev: a32d34abf5b2 -> editing 3eae36a2605b 9636 + │ args: jj prev --edit --color always 9637 + ○ f964c18f4250 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9638 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 9639 + │ args: jj prev --edit --color always 9640 + ○ abc6c2d67d6c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9641 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 9642 + │ args: jj prev --edit --color always 9643 + ○ 955e6799d49a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9644 + │ prev: e817aa28318f -> editing d24fcbff9fa8 9645 + │ args: jj prev --edit --color always 9646 + ○ 46e4a167b6e9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9647 + │ prev: bf3bd93157fe -> editing e817aa28318f 9648 + │ args: jj prev --edit --color always 9649 + ○ de91ff44ef59 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9650 + │ prev: cf157ef807a2 -> editing bf3bd93157fe 9651 + │ args: jj prev --edit --color always 9652 + ○ 440e4652352c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9653 + │ prev: 156f77d97c30 -> editing cf157ef807a2 9654 + │ args: jj prev --edit --color always 9655 + ○ 4bae8a17b53b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9656 + │ prev: b774cec816ba -> editing 156f77d97c30 9657 + │ args: jj prev --edit --color always 9658 + ○ a4d557f8ad7b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9659 + │ prev: a39ba96d6e4a -> editing b774cec816ba 9660 + │ args: jj prev --edit --color always 9661 + ○ c23d208589d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9662 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 9663 + │ args: jj prev --edit --color always 9664 + ○ e95297289186 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9665 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 9666 + │ args: jj prev --edit --color always 9667 + ○ 2cbdbc53d7b1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9668 + │ prev: 950186d3e70f -> editing cc8d0eb60492 9669 + │ args: jj prev --edit --color always 9670 + ○ a4573bf98c3f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9671 + │ prev: 2739bea98abf -> editing 950186d3e70f 9672 + │ args: jj prev --edit --color always 9673 + ○ 0e9f7a179972 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9674 + │ prev: e629aa0beb6f -> editing 2739bea98abf 9675 + │ args: jj prev --edit --color always 9676 + ○ 37a66ae3ebc9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9677 + │ next: 2739bea98abf -> editing e629aa0beb6f 9678 + │ args: jj next --edit --color always 9679 + ○ 222cdba01168 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9680 + │ next: 950186d3e70f -> editing 2739bea98abf 9681 + │ args: jj next --edit --color always 9682 + ○ 2372f98031dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9683 + │ next: cc8d0eb60492 -> editing 950186d3e70f 9684 + │ args: jj next --edit --color always 9685 + ○ e1f40502f278 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9686 + │ next: 48d266b0f74f -> editing cc8d0eb60492 9687 + │ args: jj next --edit --color always 9688 + ○ 1fc3c88ab08f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9689 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 9690 + │ args: jj next --edit --color always 9691 + ○ d8586c9fa878 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9692 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 9693 + │ args: jj prev --edit --color always 9694 + ○ 18269bea45c4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9695 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 9696 + │ args: jj prev --edit --color always 9697 + ○ 28620f402dbb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9698 + │ next: 48d266b0f74f -> editing cc8d0eb60492 9699 + │ args: jj next --edit --color always 9700 + ○ 65129eeb16ef eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9701 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 9702 + │ args: jj prev --edit --color always 9703 + ○ c7e532a0762d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9704 + │ next: 48d266b0f74f -> editing cc8d0eb60492 9705 + │ args: jj next --edit --color always 9706 + ○ f815d912f7e4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9707 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 9708 + │ args: jj prev --edit --color always 9709 + ○ 9a840cbaa8fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9710 + │ next: 48d266b0f74f -> editing cc8d0eb60492 9711 + │ args: jj next --edit --color always 9712 + ○ 686661f7ccd9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9713 + │ next: a39ba96d6e4a -> editing 48d266b0f74f 9714 + │ args: jj next --edit --color always 9715 + ○ 8c5b7e4c1225 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9716 + │ next: b774cec816ba -> editing a39ba96d6e4a 9717 + │ args: jj next --edit --color always 9718 + ○ 3b513b12ee24 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9719 + │ next: 156f77d97c30 -> editing b774cec816ba 9720 + │ args: jj next --edit --color always 9721 + ○ 2b08f91111f7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9722 + │ prev: b774cec816ba -> editing 156f77d97c30 9723 + │ args: jj prev --edit --color always 9724 + ○ a109e43e0d0a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9725 + │ prev: a39ba96d6e4a -> editing b774cec816ba 9726 + │ args: jj prev --edit --color always 9727 + ○ 77fa8eb253ec eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9728 + │ prev: 48d266b0f74f -> editing a39ba96d6e4a 9729 + │ args: jj prev --edit --color always 9730 + ○ f6b2875d7148 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9731 + │ prev: cc8d0eb60492 -> editing 48d266b0f74f 9732 + │ args: jj prev --edit --color always 9733 + ○ 87199d2611a2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9734 + │ prev: 950186d3e70f -> editing cc8d0eb60492 9735 + │ args: jj prev --edit --color always 9736 + ○ 061aebfb8410 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9737 + │ prev: 2739bea98abf -> editing 950186d3e70f 9738 + │ args: jj prev --edit --color always 9739 + ○ f89e07306ef3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9740 + │ prev: e629aa0beb6f -> editing 2739bea98abf 9741 + │ args: jj prev --edit --color always 9742 + ○ c099446d186c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9743 + │ next: 2739bea98abf -> editing e629aa0beb6f 9744 + │ args: jj next --edit --color always 9745 + ○ e8ea71c5b2a9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9746 + │ prev: e629aa0beb6f -> editing 2739bea98abf 9747 + │ args: jj prev --edit --color always 9748 + ○ d4c1200ba27d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9749 + │ next: 2739bea98abf -> editing e629aa0beb6f 9750 + │ args: jj next --edit --color always 9751 + ○ a197a899f0fe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9752 + │ next: 950186d3e70f -> editing 2739bea98abf 9753 + │ args: jj next --edit --color always 9754 + ○ cc4ee0244c0e eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9755 + │ next: cc8d0eb60492 -> editing 950186d3e70f 9756 + │ args: jj next --edit --color always 9757 + ○ b4440477e838 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9758 + │ prev: 950186d3e70f -> editing cc8d0eb60492 9759 + │ args: jj prev --edit --color always 9760 + ○ fe1d4533a8b0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9761 + │ prev: 2739bea98abf -> editing 950186d3e70f 9762 + │ args: jj prev --edit --ignore-working-copy 9763 + ○ 28dfbd17f098 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9764 + │ prev: e629aa0beb6f -> editing 2739bea98abf 9765 + │ args: jj prev --edit --ignore-working-copy 9766 + ○ 75fc418ceb44 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9767 + │ rename branch hi to branch bye 9768 + │ args: jj branch rename hi bye --color always 9769 + ○ 219d7975fe9b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9770 + │ create branch hi pointing to commit e629aa0beb6fc1f4b6aba3944776b17d6c7f0945 9771 + │ args: jj branch create hi --color always 9772 + ○ 7286142a6136 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9773 + │ prev: a78888a34918 -> editing e629aa0beb6f 9774 + │ args: jj prev --edit --color always 9775 + ○ 6bb7618574ff eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9776 + │ squash commits into edd7d0839b388ee8175f1bfe87923de06162f3e0 9777 + │ args: jj squash --quiet -m 'taroisetoariest 9778 + 9779 + │ oarisetnaorienst 9780 + 9781 + │ ' --color always 9782 + ○ 6cdad9359f5b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9783 + │ prev: 9e664ead9fc9 -> editing 2d3e7612a1b9 9784 + │ args: jj prev --edit --color always 9785 + ○ 36cb49188518 eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 9786 + │ commit 4f545f50a901b12c339db1a9e6efa1318a4415f7 9787 + │ args: jj commit -m oarisetnaorienst --color always 9788 + ○ d8a5b5a22be6 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9789 + │ commit 819c8ef8b6e075b1b670ad59bfa58bd0910eead7 9790 + │ args: jj commit -m taroisetoariest --color always 9791 + ○ f552d15d3bc4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9792 + │ commit a6153441568f9aa4c42d37f0c538933e93ceee47 9793 + │ args: jj commit -m hi --color always 9794 + ○ d486a5e71797 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9795 + │ commit 05343f4fbe95ef1f3c912c3a7bb60e5221f09d5a 9796 + │ args: jj commit -m hi --color always 9797 + ○ 56233d6a5071 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9798 + │ prev: 1eeecc488c6a -> editing 05343f4fbe95 9799 + │ args: jj prev --edit --color always 9800 + ○ 99f901cadf87 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9801 + │ squash commits into a638c52f299c89c6d565e034fdf2d21c0275f8e1 9802 + │ args: jj squash --quiet -m 'hi 9803 + 9804 + 9805 + 9806 + │ hi 9807 + 9808 + │ ' --color always 9809 + ○ 835be5b68838 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9810 + │ prev: 6c7f1ef59cb1 -> editing e4fb6d7146c2 9811 + │ args: jj prev --edit --color always 9812 + ○ b669936a2f9b eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 9813 + │ commit 17bb4b2e967bd817def69f549154ddd0aa9283b2 9814 + │ args: jj commit -m hi --color always 9815 + ○ 6ddb76e610f3 eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 9816 + │ commit 891985da418d88df9793501a85bd0268af570d81 9817 + │ args: jj commit -m hi --color always 9818 + ○ 43edbacca45f eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9819 + │ commit f1a77dc0c1daab8fbb79e0db6c99398bcc7be2c5 9820 + │ args: jj commit -m hi --color always 9821 + ○ df1d8579bf54 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9822 + │ prev: 09defe55dea1 -> editing f1a77dc0c1da 9823 + │ args: jj prev --edit --color always 9824 + ○ 3d233095f4d9 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9825 + │ squash commits into 0a9e2acd6785c0d7e3c8d3a8dcfcbefe0725ef64 9826 + │ args: jj squash --quiet -m 'hi 9827 + 9828 + 9829 + 9830 + │ theer 9831 + 9832 + │ made 9833 + 9834 + 9835 + │ ' --color always 9836 + ○ 5fdb53437364 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9837 + │ prev: 4d6c191bf4cf -> editing 2f7b7c3e3fab 9838 + │ args: jj prev --edit --color always 9839 + ○ f1e41c5cfa3e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9840 + │ squash commits into 327f68db14d6cb931c837b3114ae20701eacfefc 9841 + │ args: jj squash --quiet -m 'theer 9842 + 9843 + │ made 9844 + 9845 + │ ' --color always 9846 + ○ 57cf0ac648d3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9847 + │ prev: b9d50011a6d3 -> editing a73a3ef803a2 9848 + │ args: jj prev --edit --color always 9849 + ○ 0435af533e54 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9850 + │ commit 3d8028fbe7d23c31ea960b09e0cedd7bfc4dcdad 9851 + │ args: jj commit -m made --color always 9852 + ○ 3a9648c27abf eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 9853 + │ commit e7b7bf1c9d567e65167b3ac35f392cc11687b406 9854 + │ args: jj commit -m theer --color always 9855 + ○ 96201e98fd81 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9856 + │ commit 1fe464ed62d843e7ba91771832efc7151110e5f5 9857 + │ args: jj commit -m hi --color always 9858 + ○ 233c213fd250 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9859 + │ prev: 09c1c1b77902 -> editing 1fe464ed62d8 9860 + │ args: jj prev --edit --color always 9861 + ○ 0733c52b95c1 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9862 + │ squash commits into 0a2fe8cd9efe5d82c14abec98c7d3196efad7890 9863 + │ args: jj squash --quiet -m 'there 9864 + 9865 + 9866 + │ mate 9867 + 9868 + │ ' --color always 9869 + ○ 3959931336a8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9870 + │ prev: c3f8e3692fbb -> editing 993e23d8d37a 9871 + │ args: jj prev --edit --color always 9872 + ○ 530bda78a91d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9873 + │ commit 9265fd9185fae9942961e93d240cdaa9b758d6f7 9874 + │ args: jj commit -m mate --color always 9875 + ○ 51de25fe3b29 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 9876 + │ commit cca11a5ea849e3c9f52c24065abe36a1ecb5f09f 9877 + │ args: jj commit -m there --color always 9878 + ○ d49c25325d32 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 9879 + │ commit a8e890af7716212bf34a42f0da6735c9fcfeccc4 9880 + │ args: jj commit -m hi --color always 9881 + ○ 542217fd9678 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9882 + │ prev: 26bc476cecf5 -> editing a8e890af7716 9883 + │ args: jj prev --edit --color always 9884 + ○ 1ae1c544e128 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9885 + │ squash commits into e74ff9b54a9dbfedfb110906614f994454ea7880 9886 + │ args: jj squash --quiet -m 'heyyyy 9887 + 9888 + 9889 + │ hiii 9890 + 9891 + │ ' --color always 9892 + ○ bd95023049f0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9893 + │ snapshot working copy 9894 + │ args: jj show --color always 9895 + ○ 974d7b339326 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9896 + │ snapshot working copy 9897 + │ args: jj log --no-graph -T '"::"++current_working_copy++"::\n"++description++"\n::end::\n"' 9898 + ○ 5c32f1107dbc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9899 + │ next: e74ff9b54a9d -> editing d83af389d9ef 9900 + │ args: jj next --edit --color always 9901 + ○ 1359bbff928a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9902 + │ next: a39ba96d6e4a -> editing e74ff9b54a9d 9903 + │ args: jj next --edit --color always 9904 + ○ 8ba828b8ea12 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9905 + │ prev: e74ff9b54a9d -> editing a39ba96d6e4a 9906 + │ args: jj prev --edit --color always 9907 + ○ 9640ee5972f9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9908 + │ describe commit fce0cb59e1f4310daa2dd52fd68754f22d2f7f35 9909 + │ args: jj describe -m heyyyy --color always 9910 + ○ 0c36998be726 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9911 + │ prev: 95b2bf3f1135 -> editing fce0cb59e1f4 9912 + │ args: jj prev --edit --color always 9913 + ○ 72b85377f065 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9914 + │ describe commit 5578d593d4ac962736605ee8207665366a88ff76 9915 + │ args: jj describe -m hiii --color always 9916 + ○ 99ec0f674b2e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9917 + │ new empty commit 9918 + │ args: jj new --color always 9919 + ○ 3d6f0119134d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9920 + │ commit 140f6af911abae8f52fa038fbc9518bb4822fb5a 9921 + │ args: jj commit -m hiiiii --color always 9922 + ○ 79ff34f9df9c eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9923 + │ new empty commit 9924 + │ args: jj new --color always 9925 + ○ 794cc557ab24 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9926 + │ prev: 18a13c73abcb -> editing b774cec816ba 9927 + │ args: jj prev --edit --color always 9928 + ○ 3d386c7ebc53 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9929 + │ squash commits into d2fbf2ba883fef628309be4ce4d0d194af797c69 9930 + │ args: jj squash --quiet -m ' hi 9931 + │ hi' --color always 9932 + ○ c4c818190f84 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9933 + │ next: d2fbf2ba883f -> editing 1f962613fdff 9934 + │ args: jj next --edit --color always 9935 + ○ d9a516d97517 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9936 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 9937 + │ args: jj next --edit --color always 9938 + ○ d3193ea846ca eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9939 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 9940 + │ args: jj prev --edit --color always 9941 + ○ 9795b66a350d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9942 + │ prev: 1f962613fdff -> editing d2fbf2ba883f 9943 + │ args: jj prev --edit --color always 9944 + ○ 8eb189214c1f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9945 + │ prev: de3d206586eb -> editing 1f962613fdff 9946 + │ args: jj prev --edit --color always 9947 + ○ 3d0ebb24fde9 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 9948 + │ commit 4fc1da577d622650339905379b24c10182f8213f 9949 + │ args: jj commit -m hi --color always 9950 + ○ 906dedf9bf65 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 9951 + │ new empty commit 9952 + │ args: jj new --color always 9953 + ○ 79a2293e6ebe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9954 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 9955 + │ args: jj next --edit --color always 9956 + ○ 7ff7dd3ac474 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9957 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 9958 + │ args: jj prev --edit --color always 9959 + ○ 2082701b30f9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9960 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 9961 + │ args: jj next --edit --color always 9962 + ○ 1b46eec9cf13 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9963 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 9964 + │ args: jj prev --edit --color always 9965 + ○ 331dd68121cb eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9966 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 9967 + │ args: jj next --edit --color always 9968 + ○ 6149ef8de1a3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9969 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 9970 + │ args: jj prev --edit --color always 9971 + ○ d0280d2971ba eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9972 + │ next: 156f77d97c30 -> editing d2fbf2ba883f 9973 + │ args: jj next --edit --color always 9974 + ○ 55e9e5b666c4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9975 + │ prev: d2fbf2ba883f -> editing 156f77d97c30 9976 + │ args: jj prev --edit --color always 9977 + ○ eb69650930c2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 9978 + │ describe commit f7f6a239f683133aea01c9348214a4387f2f4233 9979 + │ args: jj describe -m hi --color always 9980 + ○ 57ff3a6b65c9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9981 + │ new empty commit 9982 + │ args: jj new --color always 9983 + ○ 92e5a759b532 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9984 + │ prev: db28a3c94548 -> editing 156f77d97c30 9985 + │ args: jj prev --edit --color always 9986 + ○ 52f9d46ebed0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9987 + │ squash commits into ce6791c1369d899c890905b4afba26e93f99b059 9988 + │ args: jj squash --quiet -m '◉ top 9989 + │ @ bottom' --color always 9990 + ○ 1d1d1f007a70 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9991 + │ describe commit 205d2260c671e0d59fea1bd704db38ef37f35feb 9992 + │ args: jj describe -m bottom --color always 9993 + ○ 466a213fcfca eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9994 + │ new empty commit 9995 + │ args: jj new --color always 9996 + ○ 1d987e97b96e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 9997 + │ describe commit 45e24d7495a87dcfe31b87feee6a5ff306cd34da 9998 + │ args: jj describe -m top --color always 9999 + ○ 61db9da90743 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10000 + │ new empty commit 10001 + │ args: jj new --color always 10002 + ○ 0f3e71bb30d6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10003 + │ prev: 27c5ac2f280e -> editing cf157ef807a2 10004 + │ args: jj prev --edit --color always 10005 + ○ 7dcc590a6c5a eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10006 + │ squash commits into f0a8ee6faf9531723ac069aba25c698e843f2bc5 10007 + │ args: jj squash --quiet -m '\'◉ top 10008 + │ @ \' bottom 10009 + │ │ top\'\'' --color always 10010 + ○ de8f4fcc492c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10011 + │ next: f0a8ee6faf95 -> editing 32a7bd1d1da4 10012 + │ args: jj next --edit --color always 10013 + ○ 272e024b34f1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10014 + │ prev: 32a7bd1d1da4 -> editing f0a8ee6faf95 10015 + │ args: jj prev --edit --color always 10016 + ○ 3c40022e3ab2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10017 + │ next: f0a8ee6faf95 -> editing 32a7bd1d1da4 10018 + │ args: jj next --edit --color always 10019 + ○ 384780c22afa eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10020 + │ prev: 32a7bd1d1da4 -> editing f0a8ee6faf95 10021 + │ args: jj prev --edit --color always 10022 + ○ f7ef54954104 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10023 + │ prev: 83e52c5bad57 -> editing 32a7bd1d1da4 10024 + │ args: jj prev --edit --color always 10025 + ○ 1276407ad8fb eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10026 + │ squash commits into 50a646e48dc375fb39f24d5056b05699bd756a19 10027 + │ args: jj squash --quiet -m '\' bottom 10028 + │ top\'' --color always 10029 + ○ 1f026b64b28d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10030 + │ next: 50a646e48dc3 -> editing 647056aa842a 10031 + │ args: jj next --edit --color always 10032 + ○ 300b004a7d08 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10033 + │ prev: 1ccda61c8afb -> editing 50a646e48dc3 10034 + │ args: jj prev --edit --color always 10035 + ○ 3307862123fa eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10036 + │ commit c567ed81c071bc84de591c42843125f5c40058a0 10037 + │ args: jj commit -m bottom --color always 10038 + ○ 05533a1e03e3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10039 + │ prev: b8ff36a2e567 -> editing c567ed81c071 10040 + │ args: jj prev --edit --color always 10041 + ○ 7e8e95d1639e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10042 + │ describe commit 1314b89c9c73d1b58444203a7b37803dfa5618e9 10043 + │ args: jj describe -m top --color always 10044 + ○ b361daa69f91 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10045 + │ describe commit 6d84b0df6f455c79dca8ad8fa14014dfd98e018f 10046 + │ args: jj describe -m bottom --color always 10047 + ○ 09b2fc440548 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10048 + │ new empty commit 10049 + │ args: jj new --color always 10050 + ○ a38479196b0e eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10051 + │ commit 00c3ea8fee69a8d37022a3b82204ce99f5bfb014 10052 + │ args: jj commit -m top --color always 10053 + ○ ae4096910b24 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10054 + │ squash commits into f8625ee3fa8c7d82cb14f40e49fb7b498c123606 10055 + │ args: jj squash --quiet -m '\' \' hi 10056 + │ hi\' 10057 + │ hi\'' --color always 10058 + ○ 97cd694b3d62 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 10059 + │ describe commit 7338aec8c0a4b9718f1f096970017c7ccfe480d6 10060 + │ args: jj describe -m hi --color always 10061 + ○ e82d5c639ccb eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10062 + │ new empty commit 10063 + │ args: jj new --color always 10064 + ○ a517a8e91755 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10065 + │ prev: f4f6a1633518 -> editing f8625ee3fa8c 10066 + │ args: jj prev --edit --color always 10067 + ○ 6c279d45d045 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10068 + │ squash commits into d0ce96126dee3281b467802904bde912d45a3527 10069 + │ args: jj squash --quiet -m '\' hi 10070 + │ hi\'' --color always 10071 + ○ c1d51e2755e0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10072 + │ next: d0ce96126dee -> editing e82e5b5491cd 10073 + │ args: jj next --edit --color always 10074 + ○ fd94b05e3ca2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10075 + │ next: e817aa28318f -> editing d0ce96126dee 10076 + │ args: jj next --edit --color always 10077 + ○ 9124112d1dbd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10078 + │ prev: d0ce96126dee -> editing e817aa28318f 10079 + │ args: jj prev --edit --color always 10080 + ○ 7252bfb45762 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10081 + │ describe commit ae954d026f84db8bfa794e6232b40e692c59e229 10082 + │ args: jj describe -m hi --color always 10083 + ○ 94aea33cbd7b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10084 + │ prev: e355f252ac5a -> editing ae954d026f84 10085 + │ args: jj prev --edit --color always 10086 + ○ f260ae605079 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 10087 + │ describe commit c1ace5daa8404742bbd66789a29f34633825acf8 10088 + │ args: jj describe -m hi --color always 10089 + ○ 35b7b6600bf7 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10090 + │ new empty commit 10091 + │ args: jj new --color always 10092 + ○ 68933af246a6 eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 10093 + │ squash commits into 18ab77d50aaef2c55f808a339c8ac8c2d6ea2ddb 10094 + │ args: jj squash --quiet -m ' hi there mat 10095 + │ yyyyyyyy 10096 + │ this is a commit 10097 + │ commit 10098 + │ top commit 10099 + │ topper commit' --color always 10100 + ○ 9cc80e5f627e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10101 + │ prev: d2a4e6243427 -> editing bb65a7894857 10102 + │ args: jj prev --edit --color always 10103 + ○ 5a4863efebca eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10104 + │ squash commits into 3eaf5931de732431dccef0cbdad6c56fbef5c24e 10105 + │ args: jj squash --quiet -m ' top commit 10106 + │ topper commit' --color always 10107 + ○ 026432566bef eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10108 + │ describe commit 0eb5a19656c0e4cced7ec50c196477c24fb176e7 10109 + │ args: jj describe -m 'topper commit' --color always 10110 + ○ 579f436ac715 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10111 + │ new empty commit 10112 + │ args: jj new --color always 10113 + ○ e55221df45cc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10114 + │ describe commit d5baf524331cacd7ea920ca3bdc013e38d7686cf 10115 + │ args: jj describe -m 'top commit' --color always 10116 + ○ 0dd772cbc20f eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10117 + │ new empty commit 10118 + │ args: jj new --color always 10119 + ○ b25c1cc7a8a6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10120 + │ prev: 8e1093c7e457 -> editing 18ab77d50aae 10121 + │ args: jj prev --edit --color always 10122 + ○ 6d81914894b1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10123 + │ squash commits into fe87bc4a05fd40f0055a43562c5bc516f879c0ed 10124 + │ args: jj squash --quiet -m ' hi there mat 10125 + │ yyyyyyyy 10126 + │ this is a commit 10127 + │ commit' --color always 10128 + ○ 31a34cca8ec6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10129 + │ next: fe87bc4a05fd -> editing 1193ed1893f1 10130 + │ args: jj next --edit --color always 10131 + ○ 2578d0def711 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10132 + │ prev: 1193ed1893f1 -> editing fe87bc4a05fd 10133 + │ args: jj prev --edit --color always 10134 + ○ c7b612d848be eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10135 + │ prev: 42f0dcc74dc0 -> editing 1193ed1893f1 10136 + │ args: jj prev --edit --color always 10137 + ○ 586da1bae0a6 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10138 + │ squash commits into f25dfcedf981a094b07f0139ed65529835c48c6a 10139 + │ args: jj squash --quiet -m ' this is a commit 10140 + │ commit' --color always 10141 + ○ 63df71358f8a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10142 + │ describe commit 4d19c2bdae62d269980aeb4dc084c613fee826a6 10143 + │ args: jj describe -m commit --color always 10144 + ○ c2d08949d823 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10145 + │ commit ff87f3f2a5122b8d82a4647510b8ab73d5f83f95 10146 + │ args: jj commit -m 'this is a commit' --color always 10147 + ○ 4a0c3db017a6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10148 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 10149 + │ args: jj next --edit --color always 10150 + ○ 78cb97b6ce83 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10151 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 10152 + │ args: jj prev --edit --color always 10153 + ○ a89761ade04f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10154 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 10155 + │ args: jj next --edit --color always 10156 + ○ f324a488d108 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10157 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 10158 + │ args: jj prev --edit --color always 10159 + ○ e0b783238c27 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10160 + │ next: fe87bc4a05fd -> editing ff87f3f2a512 10161 + │ args: jj next --edit --color always 10162 + ○ 91235f435de5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10163 + │ prev: ff87f3f2a512 -> editing fe87bc4a05fd 10164 + │ args: jj prev --edit --color always 10165 + ○ 940c3ac42718 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10166 + │ describe commit 5c0afa99dcd1e5507ceddc59eb3716f59a5191ad 10167 + │ args: jj describe -m 'hely there' --color always 10168 + ○ 2302b65d18bf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10169 + │ new empty commit 10170 + │ args: jj new --color always 10171 + ○ bff2ab254bfa eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10172 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 10173 + │ args: jj next --edit --color always 10174 + ○ 901efcc54ae8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10175 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 10176 + │ args: jj prev --edit --color always 10177 + ○ 6d70d536ab10 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10178 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 10179 + │ args: jj next --edit --color always 10180 + ○ 656a0126e7e4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10181 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 10182 + │ args: jj prev --edit --color always 10183 + ○ a144c62c7837 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10184 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 10185 + │ args: jj next --edit --color always 10186 + ○ 6bb9f183444c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10187 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 10188 + │ args: jj prev --edit --color always 10189 + ○ 70b5ca56ada0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10190 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 10191 + │ args: jj next --edit --color always 10192 + ○ 835f6c9b8a72 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10193 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 10194 + │ args: jj prev --edit --color always 10195 + ○ ed1ac1807351 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10196 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 10197 + │ args: jj next --edit --color always 10198 + ○ fdd896eb9553 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10199 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 10200 + │ args: jj prev --edit --color always 10201 + ○ 789df408207c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10202 + │ next: d24fcbff9fa8 -> editing fe87bc4a05fd 10203 + │ args: jj next --edit --color always 10204 + ○ f2b429de9cb2 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10205 + │ next: 8d106e583dc6 -> editing d24fcbff9fa8 10206 + │ args: jj next --edit --color always 10207 + ○ cc816f4ae364 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10208 + │ next: a32d34abf5b2 -> editing 8d106e583dc6 10209 + │ args: jj next --edit --color always 10210 + ○ 156f7cf54933 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10211 + │ prev: 8d106e583dc6 -> editing a32d34abf5b2 10212 + │ args: jj prev --edit --color always 10213 + ○ 94a5b651ff11 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10214 + │ prev: c3b589acfe23 -> editing 8d106e583dc6 10215 + │ args: jj prev --edit --color always 10216 + ○ 7a23e316c947 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10217 + │ new empty commit 10218 + │ args: jj new --color always 10219 + ○ a5a8b83e5314 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10220 + │ prev: d24fcbff9fa8 -> editing 8d106e583dc6 10221 + │ args: jj prev --color always 10222 + ○ 0b1c2e04d971 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10223 + │ prev: fe87bc4a05fd -> editing d24fcbff9fa8 10224 + │ args: jj prev --edit --color always 10225 + ○ 055acb5faa3e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10226 + │ prev: 225de22ef62d -> editing fe87bc4a05fd 10227 + │ args: jj prev --edit --color always 10228 + ○ c94e1a034136 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10229 + │ squash commits into 99f39383d166ff653f06801222dee4a8dae92c50 10230 + │ args: jj squash --quiet -m ' hi there mat 10231 + │ yyyyyyyy 10232 + │ ' --color always 10233 + ○ 421981001df6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10234 + │ describe commit 47a7471e53d1e823aa10cc93a0bd391d56ae1600 10235 + │ args: jj describe -m h --color always 10236 + ○ 29689d961d03 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10237 + │ new empty commit 10238 + │ args: jj new --color always 10239 + ○ b0c2b74a6043 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10240 + │ prev: 06f5d53d2e8f -> editing 99f39383d166 10241 + │ args: jj prev --edit --color always 10242 + ○ 612a4ab1b057 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10243 + │ squash commits into 1457bf903cc993893cf68de3ee76c163a164d1dd 10244 + │ args: jj squash --quiet -m 'hi there mate 10245 + │ yyyyyyyy2 10246 + │ ' --color always 10247 + ○ 8e734856b428 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10248 + │ describe commit bcfecf26c567ee77cbb8f70503075330b0eec1e7 10249 + │ args: jj describe -m h --color always 10250 + ○ c316a1f806c3 eli@eli-nixos-xps 3 months ago, lasted 8 milliseconds 10251 + │ new empty commit 10252 + │ args: jj new --color always 10253 + ○ 0ac2c3561664 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10254 + │ prev: 4bfe97e78880 -> editing 1457bf903cc9 10255 + │ args: jj prev --edit --color always 10256 + ○ 30b466f48c0b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10257 + │ squash commits into be99ca72c432c245b909449d9607eaef5c81bc62 10258 + │ args: jj squash --quiet -m 'hi there mate 10259 + │ yyyyyyyy2' --color always 10260 + ○ 9f85bb043617 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10261 + │ prev: 157be426bb53 -> editing 44f387767d12 10262 + │ args: jj prev --edit --color always 10263 + ○ 3775dd33bd2a eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10264 + │ commit 022f99b6d9b8408d60748cf5d12bf22b1af2ea52 10265 + │ args: jj commit -m heyyyyyyyy2 --color always 10266 + ○ 277723acd733 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10267 + │ commit 90032a7b8d4095d26421ba2ca6abc41697ceffe0 10268 + │ args: jj commit -m 'hi there mate' --color always 10269 + ○ 478a422322b4 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10270 + │ squash commits into a1d466a6844248a3b22cfc818dfc135b81800721 10271 + │ args: jj squash --quiet -m ' hi2 10272 + │ hi3' --color always 10273 + ○ 280c74b24d68 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10274 + │ prev: a438131bc1ba -> editing da8a3d50b051 10275 + │ args: jj prev --edit --color always 10276 + ○ 3df55b0b9c9d eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10277 + │ commit 6dd0c512f09ff77281a2085d4a90d56f0bbc3216 10278 + │ args: jj commit -m hi3 --color always 10279 + ○ 2b23e4116a3b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10280 + │ commit 192954578eb7130b6a2abc9a152c06d590c7103b 10281 + │ args: jj commit -m hi2 --color always 10282 + ○ 9641ff68e0b8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10283 + │ commit fd87c5dbd403ac3f555600df53bebfad3e95c412 10284 + │ args: jj commit -m hi --color always 10285 + ○ c8820346fc54 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10286 + │ squash commits into 0a409b39ba02064525c85594ce3414ed9533b941 10287 + │ args: jj squash --quiet -m ' this is a thi 10288 + │ this is anoth 10289 + │ now anothe 10290 + │ no 10291 + │ this is ne' --color always 10292 + ○ 839c4efa675e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10293 + │ prev: c6b827eeb6d9 -> editing 31e094baca12 10294 + │ args: jj prev --edit --color always 10295 + ○ 00e94b5ef2f1 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10296 + │ squash commits into a30ae8a25dbb9ccb10d98b0fcfd49840d3c58e98 10297 + │ args: jj squash --quiet -m ' no 10298 + │ this is ne' --color always 10299 + ○ f9aaf009216c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10300 + │ prev: cae90814da8b -> editing 52881c5ed406 10301 + │ args: jj prev --edit --color always 10302 + ○ df70ee7fb571 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10303 + │ commit 687d0f50a6e2e88fd380479e4fa42a781f55e631 10304 + │ args: jj commit -m 'this is new' --color always 10305 + ○ 7f7520f3c64f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10306 + │ commit 728111e81196e6b91fc3ac657deba15f9304cb91 10307 + │ args: jj commit -m now --color always 10308 + ○ 92167d93630b eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10309 + │ new empty commit 10310 + │ args: jj new --color always 10311 + ○ 2442dcd504f4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10312 + │ next: 3eae36a2605b -> editing 0a409b39ba02 10313 + │ args: jj next --edit --color always 10314 + ○ 80af4ec24bda eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10315 + │ next: d648d9dc91ca -> editing 3eae36a2605b 10316 + │ args: jj next --edit --color always 10317 + ○ 90358830f841 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10318 + │ prev: 3eae36a2605b -> editing d648d9dc91ca 10319 + │ args: jj prev --edit --color always 10320 + ○ 83867c22075a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10321 + │ prev: 0a409b39ba02 -> editing 3eae36a2605b 10322 + │ args: jj prev --edit --color always 10323 + ○ f63a16e3709c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10324 + │ next: 3eae36a2605b -> editing 0a409b39ba02 10325 + │ args: jj next --edit --color always 10326 + ○ 7e97385ab087 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10327 + │ prev: 0a409b39ba02 -> editing 3eae36a2605b 10328 + │ args: jj prev --edit --color always 10329 + ○ 624c4b1877c8 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10330 + │ prev: 24ce6f90f0b7 -> editing 0a409b39ba02 10331 + │ args: jj prev --edit --color always 10332 + ○ 95897ffa0d66 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10333 + │ squash commits into 74584829d54c50c43cd7cb61ab34f43d5bbfad48 10334 + │ args: jj squash --quiet -m ' this is a thi 10335 + │ this is anoth 10336 + │ now anothe' --color always 10337 + ○ 39da8f5514c6 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10338 + │ describe commit d6e0881ed10552841ef050483e662385da7cd98c 10339 + │ args: jj describe -m 'now another' --color always 10340 + ○ b703a5c6aa73 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10341 + │ new empty commit 10342 + │ args: jj new --color always 10343 + ○ c0958f2efd9d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10344 + │ prev: 20e100f23ad8 -> editing 74584829d54c 10345 + │ args: jj prev --edit --color always 10346 + ○ 518d52001d89 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10347 + │ squash commits into 7ba9245258b17c06ef1f52d56428e86d52feed93 10348 + │ args: jj squash --quiet -m ' this is a thin 10349 + │ this is anothe' --color always 10350 + ○ cfdcfe764978 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10351 + │ describe commit 400c8a9362371dee59677733f87937da54abaa54 10352 + │ args: jj describe -m 'this is another' --color always 10353 + ○ 9fbf7f954ee9 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10354 + │ new empty commit 10355 + │ args: jj new --color always 10356 + ○ 46770e4be71d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10357 + │ describe commit d3fcbecf2f1e7552a881605dd949249f88582f0b 10358 + │ args: jj describe -m 'this is a thing' --color always 10359 + ○ 1087912733f5 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 10360 + │ new empty commit 10361 + │ args: jj new --color always 10362 + ○ ab36c9539ac3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10363 + │ prev: ba9c580d4485 -> editing 3eae36a2605b 10364 + │ args: jj prev --edit --color always 10365 + ○ 5e2f02c3acff eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 10366 + │ squash commits into e3db7fd1a46b40ecb3e55f3bc53a42ef7405bf38 10367 + │ args: jj squash --quiet -m ' h 10368 + │ this is my message 10369 + │ hello this is my special 10370 + │ hi \n this is \n a multi l 10371 + 10372 + │ th 10373 + │ │ 10374 + │ m' --color always 10375 + ○ aaba6e4045e5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10376 + │ next: e3db7fd1a46b -> editing f8c79ce3d777 10377 + │ args: jj next --edit --color always 10378 + ○ d6a941f7be1e eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10379 + │ next: d648d9dc91ca -> editing e3db7fd1a46b 10380 + │ args: jj next --edit --color always 10381 + ○ 10dd0c19a400 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10382 + │ prev: e3db7fd1a46b -> editing d648d9dc91ca 10383 + │ args: jj prev --edit --color always 10384 + ○ 085d072dbd7e eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10385 + │ describe commit d12586fdc5021c0201392a705d6df5e6fcacb539 10386 + │ args: jj describe -m hi --color always 10387 + ○ 0c7a46ddad47 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10388 + │ prev: b0c0787a8f3a -> editing d12586fdc502 10389 + │ args: jj prev --edit --color always 10390 + ○ 873ab7a524e0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10391 + │ prev: 69a38f67d1cf -> editing b0c0787a8f3a 10392 + │ args: jj prev --edit --color always 10393 + ○ 5b5cb72ec4b8 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10394 + │ squash commits into b3e4d35c33b7046dd5e710b4401a8b08e5c2af03 10395 + │ args: jj squash --quiet -m ' this is my message : 10396 + │ hello this is my special b 10397 + │ hi \n this is \n a multi li 10398 + │ n 10399 + │ the 10400 + 10401 + │ mo' --color always 10402 + ○ 986fad765f33 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10403 + │ next: b3e4d35c33b7 -> editing 773597b3d0f1 10404 + │ args: jj next --edit --color always 10405 + ○ f42938919c54 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10406 + │ prev: 773597b3d0f1 -> editing b3e4d35c33b7 10407 + │ args: jj prev --edit --color always 10408 + ○ cdf4da0487d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10409 + │ prev: 6393780b30ec -> editing 773597b3d0f1 10410 + │ args: jj prev --edit --color always 10411 + ○ d6688e060a1a eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 10412 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 10413 + │ args: jj squash --quiet -m ' hello this is my special bo 10414 + │ hi \n this is \n a multi lin 10415 + │ no 10416 + │ ther 10417 + │ i 10418 + │ mor' --color always 10419 + ○ fff2af294d04 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10420 + │ describe commit 9eb92d2014b4ab3ebf640492fb0775987ed3adda 10421 + │ args: jj desc 10422 + ○ 28b803520ea6 eli@eli-nixos-xps 3 months ago, lasted 10 milliseconds 10423 + │ describe commit df00622cb6f12b5a1f6e2e39cc84b4d4c3e547be 10424 + │ args: jj desc -m 'hi \n this is \n a multi line' 10425 + ○ 336c08cafc20 eli@eli-nixos-xps 3 months ago, lasted 9 milliseconds 10426 + │ describe commit fa1b077eee7d761770d5293e6ba893c678aac280 10427 + │ args: jj desc -m 'hi \n this is \n a multi \n line' 10428 + ○ 69e12ef2e07d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10429 + │ undo operation 7374a0cd8a6616cc6a60933fd964955f178d1068641ebd88a377c428ed215dbf2962f009c687f9bae6838b6482d1e1e3fae240ad0d142d8b2bb8fd1c66bd857b 10430 + │ args: jj undo 10431 + ○ 7374a0cd8a66 eli@eli-nixos-xps 3 months ago, lasted 1 second 10432 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 10433 + │ args: jj squash --quiet 10434 + ○ 2a558963f66c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10435 + │ undo operation 2b7e1078d924e9fb7ac4bbb5761ff4cb3056c7b648eb464d1765b3c74dd771ad910874106918e4443d725bacf0bac7d55a902d1bbee7ed0631847e006cb5cc8b 10436 + │ args: jj undo 10437 + ○ 2b7e1078d924 eli@eli-nixos-xps 3 months ago, lasted 7 seconds 10438 + │ squash commits into 2ae3d1650045f57251eea297ac547d1966310c28 10439 + │ args: jj squash 10440 + ○ ae6fc6d7b96f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10441 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 10442 + │ args: jj next --edit --color always 10443 + ○ 41674f86b372 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10444 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 10445 + │ args: jj next --edit --color always 10446 + ○ 5eb0011619b1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10447 + │ prev: 2ae3d1650045 -> editing b3e4d35c33b7 10448 + │ args: jj prev --edit --color always 10449 + ○ c02ce79c4283 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10450 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 10451 + │ args: jj prev --edit --color always 10452 + ○ 9dd9ae638561 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10453 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 10454 + │ args: jj next --edit --color always 10455 + ○ ff5870588251 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10456 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 10457 + │ args: jj next --edit --color always 10458 + ○ cd49d6aba628 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10459 + │ prev: 2ae3d1650045 -> editing b3e4d35c33b7 10460 + │ args: jj prev --edit --color always 10461 + ○ 9ca54ed66cac eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10462 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 10463 + │ args: jj prev --edit --color always 10464 + ○ 6763fc518d71 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10465 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 10466 + │ args: jj next --edit --color always 10467 + ○ 2fc1aa9d45cc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10468 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 10469 + │ args: jj prev --edit --color always 10470 + ○ ca730b90aea4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10471 + │ next: 2ae3d1650045 -> editing fa1b077eee7d 10472 + │ args: jj next --edit --color always 10473 + ○ 34a707bfe05d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10474 + │ prev: fa1b077eee7d -> editing 2ae3d1650045 10475 + │ args: jj prev --edit --color always 10476 + ○ 085e9bb05257 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10477 + │ prev: b0c4617ffa7d -> editing fa1b077eee7d 10478 + │ args: jj prev --edit --color always 10479 + ○ 3022b554c46f eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10480 + │ commit d719e11dd85bdb744ff66b25e25271d4a862ec09 10481 + │ args: jj commit -m hiiiii --color always 10482 + ○ 8145b341d893 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10483 + │ next: 2ae3d1650045 -> editing d719e11dd85b 10484 + │ args: jj next --edit --color always 10485 + ○ 97c3b7bf48cf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10486 + │ prev: d719e11dd85b -> editing 2ae3d1650045 10487 + │ args: jj prev --edit --color always 10488 + ○ 35f4fd06cd39 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10489 + │ next: 2ae3d1650045 -> editing d719e11dd85b 10490 + │ args: jj next --edit --color always 10491 + ○ ec440b1f43ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10492 + │ prev: d719e11dd85b -> editing 2ae3d1650045 10493 + │ args: jj prev --edit --color always 10494 + ○ f3b61e5fb0fb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10495 + │ prev: 8cd0454a21da -> editing d719e11dd85b 10496 + │ args: jj prev --edit --color always 10497 + ○ 785d92e031b6 eli@eli-nixos-xps 3 months ago, lasted 10 seconds 10498 + │ squash commits into 8462bc918128fbaff8b644f0c8990236b9ef675f 10499 + │ args: jj squash 10500 + ○ 760e2b6cec7f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10501 + │ next: 8462bc918128 -> editing b04601bd562b 10502 + │ args: jj next --edit --color always 10503 + ○ 4eb1f21ec911 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10504 + │ next: 2ae3d1650045 -> editing 8462bc918128 10505 + │ args: jj next --edit --color always 10506 + ○ 9c2a2c7a5968 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10507 + │ prev: 8462bc918128 -> editing 2ae3d1650045 10508 + │ args: jj prev --edit --color always 10509 + ○ f1664a977024 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10510 + │ prev: b04601bd562b -> editing 8462bc918128 10511 + │ args: jj prev --edit --color always 10512 + ○ 0eb8c8aa57e4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10513 + │ next: 8462bc918128 -> editing b04601bd562b 10514 + │ args: jj next --edit --color always 10515 + ○ 498bf80c28d1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10516 + │ prev: b04601bd562b -> editing 8462bc918128 10517 + │ args: jj prev --edit --color always 10518 + ○ 1a1b9f69d7c5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10519 + │ prev: 380b86b14035 -> editing b04601bd562b 10520 + │ args: jj prev --edit --color always 10521 + ○ b641345bb0dc eli@eli-nixos-xps 3 months ago, lasted 21 seconds 10522 + │ squash commits into 7b9aa64334f71116151da406c22a6acff8034a79 10523 + │ args: jj squash 10524 + ○ 57c74721a175 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10525 + │ next: 7b9aa64334f7 -> editing ac5d6b68c353 10526 + │ args: jj next --edit --color always 10527 + ○ 582ea275768c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10528 + │ prev: 908c5a93a070 -> editing 7b9aa64334f7 10529 + │ args: jj prev --edit --color always 10530 + ○ ae9e34b1876f eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 10531 + │ squash commits into 76d3e5700bae704cbb5be19e24e0750d351e8b9d 10532 + │ args: jj squash 10533 + ○ f58bd48f9277 eli@eli-nixos-xps 3 months ago, lasted 43 seconds 10534 + │ squash commits into 668cc05d3e3aae7423e0529cbd7bee3244df6937 10535 + │ args: jj squash 10536 + ○ 65b81990de1b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10537 + │ rebase commit 5ed7a69853871be56aed990b217ef798412fc523 10538 + │ args: jj rebase -r @ -d u --color always 10539 + ○ 28230b698671 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10540 + │ describe commit 830e03c6c8cd63e4061406ecea11e3baa0804a4b 10541 + │ args: jj describe -m 'new steuff' --color always 10542 + ○ f050a744b838 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10543 + │ next: 72361777e19e -> editing 830e03c6c8cd 10544 + │ args: jj next --edit --color always 10545 + ○ e644b5eb7f75 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10546 + │ prev: 830e03c6c8cd -> editing 72361777e19e 10547 + │ args: jj prev --edit --color always 10548 + ○ 20f3a6a558f9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10549 + │ snapshot working copy 10550 + │ args: jj prev --edit --color always 10551 + ○ 9742b7c4ee6b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10552 + │ commit 6bfd852f2c0147705ce9868ebef6b78f732cc29d 10553 + │ args: jj commit -m extra --color always 10554 + ○ 7a797e4c5627 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10555 + │ next: 668cc05d3e3a -> editing 6bfd852f2c01 10556 + │ args: jj next --edit --color always 10557 + ○ 90229c010d34 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10558 + │ prev: 6bfd852f2c01 -> editing 668cc05d3e3a 10559 + │ args: jj prev --edit --color always 10560 + ○ 44d5c82aae91 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10561 + │ snapshot working copy 10562 + │ args: jj prev --edit --color always 10563 + ○ e8fd6539165c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10564 + │ describe commit a4e05a4b131b41b732937d14dd82e4dcd2dae3b7 10565 + │ args: jj describe -m 'this is new' --color always 10566 + ○ 9f855ceb1599 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10567 + │ new empty commit 10568 + │ args: jj new --color always 10569 + ○ 9b3f2aa41814 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10570 + │ next: 8462bc918128 -> editing 668cc05d3e3a 10571 + │ args: jj next --edit --color always 10572 + ○ 68f60c866128 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10573 + │ describe commit f813640477a0b7e6ec55b09bfbe12de75390fb95 10574 + │ args: jj describe -m hi --color always 10575 + ○ dfb756887e70 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10576 + │ snapshot working copy 10577 + │ args: jj show --color always 10578 + ○ accdaec67195 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10579 + │ next: 2ae3d1650045 -> editing 851991850ea8 10580 + │ args: jj next --edit --color always 10581 + ○ be19b860c1fc eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10582 + │ prev: 851991850ea8 -> editing 2ae3d1650045 10583 + │ args: jj prev --edit --color always 10584 + ○ ae7e42c0df77 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10585 + │ prev: 71256f7d85c2 -> editing 851991850ea8 10586 + │ args: jj prev --edit --color always 10587 + ○ c17cfff5ac1f eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10588 + │ undo operation 4361df5107eddbc0094a58ed57de702409d25ba16e79308eefb7075d7bdbd168fd57e0f6f94a79fb7f60eddfc381ef4057c53bba96ece55930994fa34b21451c 10589 + │ args: jj undo 10590 + ○ 4361df5107ed eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 10591 + │ rebase commit 71256f7d85c2a85cd0590943198b89051aa7cebe 10592 + │ args: jj rebase -r @ -d t --color always 10593 + ○ 0da4f9de1ce1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10594 + │ undo operation 9f9e306937d410cd10ce5fcfcd814ed8cb38f3f6fe1f5886e0d81986759c74ffcdd3a527c55d3629b6e034a42c8069a780db816b283bbe174d8bb87e9a69355c 10595 + │ args: jj undo 10596 + ○ 9f9e306937d4 eli@eli-nixos-xps 3 months ago, lasted 8 milliseconds 10597 + │ abandon commit 71256f7d85c2a85cd0590943198b89051aa7cebe 10598 + │ args: jj abandon 10599 + ○ 1750a7ff0ecc eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10600 + │ snapshot working copy 10601 + │ args: jj status 10602 + ○ b968c3a55edb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10603 + │ next: 851991850ea8 -> editing 737ffbb53f06 10604 + │ args: jj next --edit 10605 + ○ c1f7278bf51d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10606 + │ next: 2ae3d1650045 -> editing 851991850ea8 10607 + │ args: jj next --edit 10608 + ○ 336e04763143 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10609 + │ next: b3e4d35c33b7 -> editing 2ae3d1650045 10610 + │ args: jj next --edit 10611 + ○ 2830430ace23 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10612 + │ snapshot working copy 10613 + │ args: jj log 10614 + ○ bcf95d116310 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10615 + │ prev: 02702cffec6e -> editing 2d353c7be390 10616 + │ args: jj prev --edit --color always 10617 + ○ 81ce387110f5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10618 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 10619 + │ args: jj prev --edit --color always 10620 + ○ 19483c9bbde4 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10621 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 10622 + │ args: jj prev --edit --color always 10623 + ○ 700dcf548eb5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10624 + │ prev: 4599f3e54870 -> editing 7443d2cca1bc 10625 + │ args: jj prev --edit --color always 10626 + ○ bd3219e17f17 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10627 + │ new empty commit 10628 + │ args: jj new --color always 10629 + ○ 326a0f768a0f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10630 + │ next: 7b3325ebc782 -> editing 7443d2cca1bc 10631 + │ args: jj next --edit --color always 10632 + ○ 9335cee4f0eb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10633 + │ next: 02702cffec6e -> editing 7b3325ebc782 10634 + │ args: jj next --edit --color always 10635 + ○ 54395aeea5a5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10636 + │ next: 2d353c7be390 -> editing 02702cffec6e 10637 + │ args: jj next --edit --color always 10638 + ○ 799491fe5f54 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10639 + │ next: d12586fdc502 -> editing 2d353c7be390 10640 + │ args: jj next --edit --color always 10641 + ○ a9ee3831d8b7 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10642 + │ next: d648d9dc91ca -> editing d12586fdc502 10643 + │ args: jj next --edit --color always 10644 + ○ 0d20d5291b43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10645 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 10646 + │ args: jj next --edit --color always 10647 + ○ fd857d02cebe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10648 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 10649 + │ args: jj next --edit --color always 10650 + ○ cc6ad1b31b82 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10651 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 10652 + │ args: jj next --edit --color always 10653 + ○ a6d6df6a92bd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10654 + │ next: 8e967a8ded42 -> editing 0e4ff83a1ce6 10655 + │ args: jj next --edit --color always 10656 + ○ 659eee66e19c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10657 + │ next: 584796aea9d8 -> editing 8e967a8ded42 10658 + │ args: jj next --edit --color always 10659 + ○ d0b5f2fe74b0 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10660 + │ prev: 8e967a8ded42 -> editing 584796aea9d8 10661 + │ args: jj prev --edit --color always 10662 + ○ 73451c217bbf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10663 + │ prev: 0e4ff83a1ce6 -> editing 8e967a8ded42 10664 + │ args: jj prev --edit --color always 10665 + ○ 93a1975e4a2b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10666 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 10667 + │ args: jj prev --edit --color always 10668 + ○ 77a8d5a85c01 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10669 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 10670 + │ args: jj prev --edit --color always 10671 + ○ 6aed2e405d8a eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10672 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 10673 + │ args: jj prev --edit --color always 10674 + ○ 9a2468dda98b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10675 + │ prev: d12586fdc502 -> editing d648d9dc91ca 10676 + │ args: jj prev --edit --color always 10677 + ○ a9845c154b61 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10678 + │ prev: 2d353c7be390 -> editing d12586fdc502 10679 + │ args: jj prev --edit --color always 10680 + ○ 26b16d4d329d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10681 + │ prev: 02702cffec6e -> editing 2d353c7be390 10682 + │ args: jj prev --edit --color always 10683 + ○ 9e639bf10687 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10684 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 10685 + │ args: jj prev --edit --color always 10686 + ○ e75938ad06be eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10687 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 10688 + │ args: jj prev --edit --color always 10689 + ○ 154d18ff4be3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10690 + │ next: 7b3325ebc782 -> editing 7443d2cca1bc 10691 + │ args: jj next --edit --color always 10692 + ○ 97611ed444be eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10693 + │ next: 02702cffec6e -> editing 7b3325ebc782 10694 + │ args: jj next --edit --color always 10695 + ○ d326b076c178 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10696 + │ next: 2d353c7be390 -> editing 02702cffec6e 10697 + │ args: jj next --edit --color always 10698 + ○ 229ff65b11e9 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10699 + │ next: d12586fdc502 -> editing 2d353c7be390 10700 + │ args: jj next --edit --color always 10701 + ○ f0efd6a397b3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10702 + │ prev: 2d353c7be390 -> editing d12586fdc502 10703 + │ args: jj prev --edit --color always 10704 + ○ 65ca5a954b7f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10705 + │ prev: 02702cffec6e -> editing 2d353c7be390 10706 + │ args: jj prev --edit --color always 10707 + ○ 48a7330a503b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10708 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 10709 + │ args: jj prev --edit --color always 10710 + ○ 059537c13271 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10711 + │ prev: 7443d2cca1bc -> editing 7b3325ebc782 10712 + │ args: jj prev --edit --color always 10713 + ○ 6762f0792516 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10714 + │ prev: c83ac2518973 -> editing 7443d2cca1bc 10715 + │ args: jj prev --edit --color always 10716 + ○ 35f7aeb9dbee eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 10717 + │ commit 4f46a9a3b714fdcad2ea83e60713b3910bd9925f 10718 + │ args: jj commit -m msg --color always 10719 + ○ 92128570ca7b eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10720 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 10721 + │ args: jj next --edit --color always 10722 + ○ 28a4507815a4 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10723 + │ next: 02702cffec6e -> editing 7b3325ebc782 10724 + │ args: jj next --edit --color always 10725 + ○ 890c5cabbbd5 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10726 + │ next: 2d353c7be390 -> editing 02702cffec6e 10727 + │ args: jj next --edit --color always 10728 + ○ 724d8c1c8a0d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10729 + │ next: d12586fdc502 -> editing 2d353c7be390 10730 + │ args: jj next --edit --color always 10731 + ○ d1c7cc57a47f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10732 + │ next: d648d9dc91ca -> editing d12586fdc502 10733 + │ args: jj next --edit --color always 10734 + ○ c6a356814e90 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10735 + │ next: 8e6eefa8a5ee -> editing d648d9dc91ca 10736 + │ args: jj next --edit --color always 10737 + ○ ca3f25829ea6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10738 + │ next: 4aef9ef891b1 -> editing 8e6eefa8a5ee 10739 + │ args: jj next --edit --color always 10740 + ○ a7bfdfcb356a eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10741 + │ next: 0e4ff83a1ce6 -> editing 4aef9ef891b1 10742 + │ args: jj next --edit --color always 10743 + ○ 5487d1ef59a5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10744 + │ prev: 4aef9ef891b1 -> editing 0e4ff83a1ce6 10745 + │ args: jj prev --edit --color always 10746 + ○ 1488736338c7 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10747 + │ prev: 8e6eefa8a5ee -> editing 4aef9ef891b1 10748 + │ args: jj prev --edit --color always 10749 + ○ 4d5f07a1af43 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10750 + │ prev: d648d9dc91ca -> editing 8e6eefa8a5ee 10751 + │ args: jj prev --edit --color always 10752 + ○ dd29242c3f33 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10753 + │ prev: d12586fdc502 -> editing d648d9dc91ca 10754 + │ args: jj prev --edit --color always 10755 + ○ af3199d24afe eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10756 + │ prev: 2d353c7be390 -> editing d12586fdc502 10757 + │ args: jj prev --edit --color always 10758 + ○ 5f5e018d1fd1 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10759 + │ prev: 02702cffec6e -> editing 2d353c7be390 10760 + │ args: jj prev --edit --color always 10761 + ○ d9f802be5cfb eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10762 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 10763 + │ args: jj prev --edit --color always 10764 + ○ abaf2ad6b6dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10765 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 10766 + │ args: jj prev --edit --color always 10767 + ○ 2541871b0c06 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10768 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 10769 + │ args: jj next --edit --color always 10770 + ○ 272b10b01813 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10771 + │ next: 02702cffec6e -> editing 7b3325ebc782 10772 + │ args: jj next --edit --color always 10773 + ○ fe99f6725576 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10774 + │ next: 2d353c7be390 -> editing 02702cffec6e 10775 + │ args: jj next --edit --color always 10776 + ○ 4b0e484fc47c eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10777 + │ prev: 02702cffec6e -> editing 2d353c7be390 10778 + │ args: jj prev --edit --color always 10779 + ○ dc4839f675dd eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10780 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 10781 + │ args: jj prev --edit --color always 10782 + ○ e559ab536ad3 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10783 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 10784 + │ args: jj prev --edit --color always 10785 + ○ 466323d191fa eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10786 + │ next: 7b3325ebc782 -> editing 4f46a9a3b714 10787 + │ args: jj next --edit --color always 10788 + ○ dc46a3d722ad eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10789 + │ next: 02702cffec6e -> editing 7b3325ebc782 10790 + │ args: jj next --edit --color always 10791 + ○ ee8bc69093a7 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10792 + │ prev: 7b3325ebc782 -> editing 02702cffec6e 10793 + │ args: jj prev --edit --color always 10794 + ○ 703e4cb33297 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10795 + │ prev: 4f46a9a3b714 -> editing 7b3325ebc782 10796 + │ args: jj prev --edit --color always 10797 + ○ 79548909f1d8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10798 + │ prev: 5e12535fc62e -> editing 4f46a9a3b714 10799 + │ args: jj prev --edit --color always 10800 + ○ 4062e885a791 eli@eli-nixos-xps 3 months ago, lasted 12 milliseconds 10801 + │ commit b30ff64921da4b2972e4493d039b6549cec96ffb 10802 + │ args: jj commit -m 'hello this is my message to you :) ' --color always 10803 + ○ 2cf737c2954d eli@eli-nixos-xps 3 months ago, lasted 11 milliseconds 10804 + │ commit 9cf52a9c549e7c3b16dded8a6f78bb354a3b62e5 10805 + │ args: jj commit -m aorsietnaoriestnoaiernstoaienrstoieanrostieanstoiaernstoiaenrstoienaorisentoaiesnrtoairesntoaiernstoieanrsotieanrsotienaoriesntoiaenrsotien --color always 10806 + ○ c5affee8b149 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10807 + │ commit f387f2b17733e7873f03c6c3bb40809e0075e667 10808 + │ args: jj commit -m 'hello this is my special box' --color always 10809 + ○ bea5432fd07b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10810 + │ commit 2aa53e699ccfb2f3ae9e7f880f0c59bfbc9567a3 10811 + │ args: jj commit -m 'this is my message :)' --color always 10812 + ○ 7deffc5d3758 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10813 + │ commit f08821057c490dc735b3afb66ec1ff13f6939340 10814 + │ args: jj commit -m 'message is centered successfully yay' --color always 10815 + ○ 5c45e9b5f29b eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10816 + │ commit 24f20c3ec9492384fcd100013d3901a6483c477a 10817 + │ args: jj commit -m heyqqCq --color always 10818 + ○ e420cbd54c0a eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10819 + │ new empty commit 10820 + │ args: jj new --color always 10821 + ○ d10977dd23a1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10822 + │ new empty commit 10823 + │ args: jj new --color always 10824 + ○ 9763e9ec3d90 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10825 + │ commit cba27c8d1e154cc67c0aa9606ea578635187e1cb 10826 + │ args: jj commit -m 'message ' --color always 10827 + ○ 36b32fa3461f eli@eli-nixos-xps 3 months ago, lasted 5 milliseconds 10828 + │ commit ab22d4a9f486f28f45ab900bc29fd5c4b9094b51 10829 + │ args: jj commit -m 'hello this is a box' --color always 10830 + ○ 939266a0e6a0 eli@eli-nixos-xps 3 months ago, lasted 6 milliseconds 10831 + │ commit ec2f5045174e0f48baec7e3879f227ebc244c9c8 10832 + │ args: jj commit -m 'uy;yu;yu;yu' --color always 10833 + ○ b576316b8c25 eli@eli-nixos-xps 3 months ago, lasted 4 milliseconds 10834 + │ new empty commit 10835 + │ args: jj new --color always 10836 + ○ 4acc65804797 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10837 + │ next: 529712756e2c -> editing 812a118be9e4 10838 + │ args: jj next --edit --color always 10839 + ○ 45a920b402a6 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10840 + │ next: c3e259d4c40f -> editing 529712756e2c 10841 + │ args: jj next --edit --color always 10842 + ○ fc6952b1d168 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10843 + │ prev: 529712756e2c -> editing c3e259d4c40f 10844 + │ args: jj prev --edit --color always 10845 + ○ c4d3e6aab846 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10846 + │ prev: 812a118be9e4 -> editing 529712756e2c 10847 + │ args: jj prev --edit --color always 10848 + ○ ea455132406a eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10849 + │ next: 529712756e2c -> editing 812a118be9e4 10850 + │ args: jj next --edit --color always 10851 + ○ 4dd75d840609 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10852 + │ next: c3e259d4c40f -> editing 529712756e2c 10853 + │ args: jj next --edit --color always 10854 + ○ b813b95ab6fe eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10855 + │ prev: 529712756e2c -> editing c3e259d4c40f 10856 + │ args: jj prev --edit --color always 10857 + ○ 5090c4380409 eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10858 + │ next: c3e259d4c40f -> editing 529712756e2c 10859 + │ args: jj next --edit --color always 10860 + ○ b6e907371166 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10861 + │ prev: 529712756e2c -> editing c3e259d4c40f 10862 + │ args: jj prev --edit --color always 10863 + ○ d089e7168df3 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10864 + │ prev: 812a118be9e4 -> editing 529712756e2c 10865 + │ args: jj prev --edit --color always 10866 + ○ ff679449c3fe eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10867 + │ next: 529712756e2c -> editing 812a118be9e4 10868 + │ args: jj next --edit --color always 10869 + ○ 3432aeaa65cc eli@eli-nixos-xps 3 months ago, lasted 2 milliseconds 10870 + │ prev: 812a118be9e4 -> editing 529712756e2c 10871 + │ args: jj prev --edit --color always 10872 + ○ ed7c0142344c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10873 + │ next: 529712756e2c -> editing 812a118be9e4 10874 + │ args: jj next --edit --color always 10875 + ○ 9e5d19c832a1 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10876 + │ next: c3e259d4c40f -> editing 529712756e2c 10877 + │ args: jj next --edit --color always 10878 + ○ 07c0d2fa4c26 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10879 + │ prev: 529712756e2c -> editing c3e259d4c40f 10880 + │ args: jj prev --edit --color always 10881 + ○ ff3c98e1f094 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10882 + │ prev: 812a118be9e4 -> editing 529712756e2c 10883 + │ args: jj prev --edit --color always 10884 + ○ 7701ea326a98 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10885 + │ next: 529712756e2c -> editing 812a118be9e4 10886 + │ args: jj next --edit --color always 10887 + ○ 648842226533 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10888 + │ next: c3e259d4c40f -> editing 529712756e2c 10889 + │ args: jj next --edit --color always 10890 + ○ b3efc9158284 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10891 + │ prev: 529712756e2c -> editing c3e259d4c40f 10892 + │ args: jj prev --edit --color always 10893 + ○ b30db7028cb0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10894 + │ prev: 812a118be9e4 -> editing 529712756e2c 10895 + │ args: jj prev --edit --color always 10896 + ○ 58f8f35f0c59 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10897 + │ next: 529712756e2c -> editing 812a118be9e4 10898 + │ args: jj next --edit --color always 10899 + ○ 3e337184c006 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10900 + │ prev: 812a118be9e4 -> editing 529712756e2c 10901 + │ args: jj prev --edit --color always 10902 + ○ 6837e102ec2d eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10903 + │ next: 529712756e2c -> editing 812a118be9e4 10904 + │ args: jj next --edit --color always 10905 + ○ 74fe32ec91bb eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10906 + │ prev: 812a118be9e4 -> editing 529712756e2c 10907 + │ args: jj prev --edit --color always 10908 + ○ 1cdd83d13b8b eli@eli-nixos-xps 3 months ago, lasted 26 seconds 10909 + │ Resolve conflicts in commit 89812fd9fe519674921bc7a055c3fbfdb6627c53 10910 + │ args: jj resolve 10911 + ○ 8b77e307548c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10912 + │ next: 529712756e2c -> editing 89812fd9fe51 10913 + │ args: jj next --edit --color always 10914 + ○ 865dd48a5308 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10915 + │ prev: 89812fd9fe51 -> editing 529712756e2c 10916 + │ args: jj prev --edit --color always 10917 + ○ e3d74708f7fa eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10918 + │ next: 529712756e2c -> editing 89812fd9fe51 10919 + │ args: jj next --edit --color always 10920 + ○ 8044b5f8756f eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10921 + │ prev: 89812fd9fe51 -> editing 529712756e2c 10922 + │ args: jj prev --edit --color always 10923 + ○ f891c7dedbd5 eli@eli-nixos-xps 3 months ago, lasted 14 seconds 10924 + │ unsquash commit 4e7f1d7c6a19ceb88be8ade764618ade88f4e3c6 10925 + │ args: jj unsquash -i 10926 + ○ 26a792a10ede eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10927 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 10928 + │ args: jj next --edit --color always 10929 + ○ 9b33fe9b04cf eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10930 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 10931 + │ args: jj prev --edit --color always 10932 + ○ 47116a073337 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10933 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 10934 + │ args: jj next --edit --color always 10935 + ○ 3c883cc7eb68 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10936 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 10937 + │ args: jj prev --edit --color always 10938 + ○ bac5b3cb41da eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10939 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 10940 + │ args: jj next --edit --color always 10941 + ○ 94dd56d26bdd eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10942 + │ next: c3e259d4c40f -> editing 52a595a66023 10943 + │ args: jj next --edit --color always 10944 + ○ b1407ca74bf5 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10945 + │ prev: 52a595a66023 -> editing c3e259d4c40f 10946 + │ args: jj prev --edit --color always 10947 + ○ 189250d7ae78 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10948 + │ next: c3e259d4c40f -> editing 52a595a66023 10949 + │ args: jj next --edit --color always 10950 + ○ 9def8b9728e0 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10951 + │ prev: 52a595a66023 -> editing c3e259d4c40f 10952 + │ args: jj prev --edit --color always 10953 + ○ 7473fe0709ad eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10954 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 10955 + │ args: jj prev --edit --color always 10956 + ○ f77cc3de0175 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10957 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 10958 + │ args: jj next --edit --color always 10959 + ○ d8a035ab73d8 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10960 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 10961 + │ args: jj prev --edit --color always 10962 + ○ 7e9c52564881 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10963 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 10964 + │ args: jj next --edit --color always 10965 + ○ ea5d1667d036 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10966 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 10967 + │ args: jj prev --edit --color always 10968 + ○ c662942c1581 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10969 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 10970 + │ args: jj next --edit --color always 10971 + ○ aabb0cc3448d eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10972 + │ next: c3e259d4c40f -> editing 52a595a66023 10973 + │ args: jj next --edit --color always 10974 + ○ 76e6780889f2 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10975 + │ prev: 52a595a66023 -> editing c3e259d4c40f 10976 + │ args: jj prev --edit --color always 10977 + ○ 4ade63236eaf eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 10978 + │ prev: 4e7f1d7c6a19 -> editing 52a595a66023 10979 + │ args: jj prev --edit --color always 10980 + ○ 5acecc077b14 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10981 + │ next: 52a595a66023 -> editing 4e7f1d7c6a19 10982 + │ args: jj next --edit --color always 10983 + ○ 4a08b9a3825c eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 10984 + │ snapshot working copy 10985 + │ args: jj show --color always 10986 + ○ 46eee48a6644 eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 10987 + │ snapshot working copy 10988 + │ args: jj show --color always 10989 + ○ 53df8b08e15c eli@eli-nixos-xps 3 months ago, lasted 3 milliseconds 10990 + │ snapshot working copy 10991 + │ args: jj show --color always 10992 + ○ 96cddd289069 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10993 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 10994 + │ args: jj prev --edit --color always 10995 + ○ b2a73f7bef1c eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10996 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 10997 + │ args: jj next --edit --color always 10998 + ○ 7fbf3b8537b9 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 10999 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11000 + │ args: jj prev --edit --color always 11001 + ○ dc12fa78fd71 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 11002 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11003 + │ args: jj next --edit --color always 11004 + ○ 2536ad8b1986 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 11005 + │ next: c3e259d4c40f -> editing 521c21d7e342 11006 + │ args: jj next --edit --color always 11007 + ○ d50789f34158 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 11008 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11009 + │ args: jj prev --edit --color always 11010 + ○ b62287a0dd09 eli@eli-nixos-xps 3 months ago, lasted less than a microsecond 11011 + │ next: c3e259d4c40f -> editing 521c21d7e342 11012 + │ args: jj next --edit --color always 11013 + ○ 2860cf74f393 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 11014 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11015 + │ args: jj prev --edit --color always 11016 + ○ 1e7781ebaf4b eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 11017 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11018 + │ args: jj prev --edit --color always 11019 + ○ 66eaf786be63 eli@eli-nixos-xps 3 months ago, lasted 1 millisecond 11020 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11021 + │ args: jj next --edit --color always 11022 + ○ bf1a2d5cc2d0 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11023 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11024 + │ args: jj prev --edit --color always 11025 + ○ 1830b4a30f34 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11026 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11027 + │ args: jj next --edit --color always 11028 + ○ 9a3e1dcb4acf eli@eli-nixos-xps 4 months ago, lasted 8 milliseconds 11029 + │ next: c3e259d4c40f -> editing 521c21d7e342 11030 + │ args: jj next --edit --color always 11031 + ○ 288e73db4714 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11032 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11033 + │ args: jj prev --edit --color always 11034 + ○ 8b9689bfc71a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11035 + │ next: c3e259d4c40f -> editing 521c21d7e342 11036 + │ args: jj next --edit --color always 11037 + ○ cce7d2d3304e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11038 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11039 + │ args: jj prev --edit --color always 11040 + ○ 0bded7ceeab2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11041 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11042 + │ args: jj prev --edit --color always 11043 + ○ 2fb76a244fb9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11044 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11045 + │ args: jj next --edit --color always 11046 + ○ 02652732f2b8 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11047 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11048 + │ args: jj prev --edit --color always 11049 + ○ 9d482485788b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11050 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11051 + │ args: jj next --edit --color always 11052 + ○ ddf0d71786dd eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11053 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11054 + │ args: jj prev --edit --color always 11055 + ○ 1eb5e9015218 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11056 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11057 + │ args: jj next --edit --color always 11058 + ○ 3c72afc3689a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11059 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11060 + │ args: jj prev --edit --color always 11061 + ○ 941686f7023e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11062 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11063 + │ args: jj next --edit --color always 11064 + ○ 1e57b6430fe2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11065 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11066 + │ args: jj prev --edit --color always 11067 + ○ c9be0ac314d7 eli@eli-nixos-xps 4 months ago, lasted 2 milliseconds 11068 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11069 + │ args: jj next --edit --color always 11070 + ○ acddfc4548e6 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11071 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11072 + │ args: jj prev --edit --color always 11073 + ○ 21114d1d41b6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11074 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11075 + │ args: jj next --edit --color always 11076 + ○ 625c40d0ae20 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11077 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11078 + │ args: jj prev --edit --color always 11079 + ○ 0f68dc615fda eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11080 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11081 + │ args: jj next --edit --color always 11082 + ○ 70921283c4d7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11083 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11084 + │ args: jj prev --edit --color always 11085 + ○ 0cd7f66b0653 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11086 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11087 + │ args: jj next --edit --color always 11088 + ○ 2d64a9b77df5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11089 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11090 + │ args: jj prev --edit --color always 11091 + ○ be1686f17364 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11092 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11093 + │ args: jj next --edit --color always 11094 + ○ 188e1b894a12 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11095 + │ next: c3e259d4c40f -> editing 521c21d7e342 11096 + │ args: jj next --edit --color always 11097 + ○ 6a1b77d070a4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11098 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11099 + │ args: jj prev --edit --color always 11100 + ○ 60bf96d15292 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11101 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11102 + │ args: jj prev --edit --color always 11103 + ○ 62d723ce7e9f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11104 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11105 + │ args: jj next --edit --color always 11106 + ○ ff1918f8c2e6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11107 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11108 + │ args: jj prev --edit --color always 11109 + ○ 4613299bb4f8 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11110 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11111 + │ args: jj next --edit --color always 11112 + ○ cb6eafe5f21e eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11113 + │ next: c3e259d4c40f -> editing 521c21d7e342 11114 + │ args: jj next --edit --color always 11115 + ○ 265ec7e3d2f5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11116 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11117 + │ args: jj prev --edit --color always 11118 + ○ fbb272511232 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11119 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11120 + │ args: jj prev --edit --color always 11121 + ○ bb7005782ef8 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11122 + │ prev: ec72e9beb82b -> editing 2e8df5e76d5d 11123 + │ args: jj prev --edit --color always 11124 + ○ 07102904b180 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11125 + │ next: 7e7636eeb1af -> 2e8df5e76d5d 11126 + │ args: jj next --color always 11127 + ○ fdb5d068e295 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11128 + │ next: e9f6fe737058 -> 521c21d7e342 11129 + │ args: jj next --color always 11130 + ○ c9525b534aca eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11131 + │ next: 626e2b4b3c96 -> c3e259d4c40f 11132 + │ args: jj next --color always 11133 + ○ 93fd2ca99e91 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11134 + │ prev: c75315664272 -> 000000000000 11135 + │ args: jj prev --color always 11136 + ○ 96e53e4b0e04 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11137 + │ prev: 2e8df5e76d5d -> c3e259d4c40f 11138 + │ args: jj prev --color always 11139 + ○ a3e39073aa69 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11140 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11141 + │ args: jj next --edit --color always 11142 + ○ e750cff692c2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11143 + │ next: c3e259d4c40f -> editing 521c21d7e342 11144 + │ args: jj next --edit --color always 11145 + ○ 54121e08e440 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11146 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11147 + │ args: jj prev --edit --color always 11148 + ○ 5ca36e9b53bf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11149 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11150 + │ args: jj prev --edit --color always 11151 + ○ 6ec1aa19a2fa eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11152 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11153 + │ args: jj next --edit --color always 11154 + ○ a9d79456cf8d eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11155 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11156 + │ args: jj prev --edit --color always 11157 + ○ cb9d546b502f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11158 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11159 + │ args: jj next --edit --color always 11160 + ○ 14629b4019ec eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11161 + │ next: c3e259d4c40f -> editing 521c21d7e342 11162 + │ args: jj next --edit --color always 11163 + ○ 8930e8174138 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11164 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11165 + │ args: jj prev --edit --color always 11166 + ○ 298017db399e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11167 + │ next: c3e259d4c40f -> editing 521c21d7e342 11168 + │ args: jj next --edit --color always 11169 + ○ 8827ed343b41 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11170 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11171 + │ args: jj prev --edit --color always 11172 + ○ ec5f272eccd5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11173 + │ next: c3e259d4c40f -> editing 521c21d7e342 11174 + │ args: jj next --edit --color always 11175 + ○ 303f15a70400 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11176 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11177 + │ args: jj prev --edit --color always 11178 + ○ 3859b383769e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11179 + │ next: c3e259d4c40f -> editing 521c21d7e342 11180 + │ args: jj next --edit --color always 11181 + ○ 79c25421c6d9 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11182 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11183 + │ args: jj prev --edit --color always 11184 + ○ dc627b3c3795 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11185 + │ next: c3e259d4c40f -> editing 521c21d7e342 11186 + │ args: jj next --edit --color always 11187 + ○ 5a20d11d45e1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11188 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11189 + │ args: jj prev --edit --color always 11190 + ○ c10a13e84da0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11191 + │ next: c3e259d4c40f -> editing 521c21d7e342 11192 + │ args: jj next --edit --color always 11193 + ○ b305ee379579 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11194 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11195 + │ args: jj prev --edit --color always 11196 + ○ 24929ef49907 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11197 + │ next: c3e259d4c40f -> editing 521c21d7e342 11198 + │ args: jj next --edit --color always 11199 + ○ 1bf9595cca4b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11200 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11201 + │ args: jj prev --edit --color always 11202 + ○ 62035b395f15 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11203 + │ next: c3e259d4c40f -> editing 521c21d7e342 11204 + │ args: jj next --edit --color always 11205 + ○ 7044696a7592 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11206 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11207 + │ args: jj prev --edit --color always 11208 + ○ e551be4ea804 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11209 + │ next: c3e259d4c40f -> editing 521c21d7e342 11210 + │ args: jj next --edit --color always 11211 + ○ 0e125b60c0ae eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11212 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11213 + │ args: jj prev --edit --color always 11214 + ○ b0de9fef53de eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11215 + │ next: c3e259d4c40f -> editing 521c21d7e342 11216 + │ args: jj next --edit --color always 11217 + ○ 5ca83175b430 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11218 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11219 + │ args: jj prev --edit --color always 11220 + ○ 70f020c9b338 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11221 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11222 + │ args: jj prev --edit --color always 11223 + ○ c9a30a1eb29a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11224 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11225 + │ args: jj next --edit --color always 11226 + ○ b21771f68b6b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11227 + │ next: c3e259d4c40f -> editing 521c21d7e342 11228 + │ args: jj next --edit --color always 11229 + ○ 74336ca3ded1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11230 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11231 + │ args: jj prev --edit --color always 11232 + ○ 0ece8c7daaf3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11233 + │ next: c3e259d4c40f -> editing 521c21d7e342 11234 + │ args: jj next --edit --color always 11235 + ○ 7b092b927800 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11236 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11237 + │ args: jj prev --edit --color always 11238 + ○ a812c85e447a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11239 + │ next: c3e259d4c40f -> editing 521c21d7e342 11240 + │ args: jj next --edit --color always 11241 + ○ 4e595ed0176b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11242 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11243 + │ args: jj prev --edit --color always 11244 + ○ 0e2a4b24272c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11245 + │ next: c3e259d4c40f -> editing 521c21d7e342 11246 + │ args: jj next --edit --color always 11247 + ○ 14c734dca028 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11248 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11249 + │ args: jj prev --edit --color always 11250 + ○ c7f02038a6a1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11251 + │ next: c3e259d4c40f -> editing 521c21d7e342 11252 + │ args: jj next --edit --color always 11253 + ○ a3ec5d8c505e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11254 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11255 + │ args: jj prev --edit --color always 11256 + ○ fa5c3595a0c5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11257 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11258 + │ args: jj prev --edit --color always 11259 + ○ a50c053607d9 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11260 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11261 + │ args: jj next --edit --color always 11262 + ○ 1550645799d8 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11263 + │ next: c3e259d4c40f -> editing 521c21d7e342 11264 + │ args: jj next --edit --color always 11265 + ○ 37b626086506 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11266 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11267 + │ args: jj prev --edit --color always 11268 + ○ b11a2b31d1fc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11269 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11270 + │ args: jj prev --edit --color always 11271 + ○ c76e2c1ba3d5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11272 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11273 + │ args: jj next --edit --color always 11274 + ○ ddae82c9c2b0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11275 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11276 + │ args: jj prev --edit --color always 11277 + ○ 4e4824142865 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11278 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11279 + │ args: jj next --edit --color always 11280 + ○ 59900065451e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11281 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11282 + │ args: jj prev --edit --color always 11283 + ○ 8c95241bd3de eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11284 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11285 + │ args: jj next --edit --color always 11286 + ○ 47b1b1650d83 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11287 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11288 + │ args: jj prev --edit --color always 11289 + ○ b1321c4dd3c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11290 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11291 + │ args: jj next --edit --color always 11292 + ○ 6c9c18c93f62 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11293 + │ next: c3e259d4c40f -> editing 521c21d7e342 11294 + │ args: jj next --edit --color always 11295 + ○ 5f5db1d8a732 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11296 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11297 + │ args: jj prev --edit --color always 11298 + ○ 0adf0f399fe6 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11299 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11300 + │ args: jj prev --edit --color always 11301 + ○ eb2d1230ddab eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11302 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11303 + │ args: jj next --edit --color always 11304 + ○ 4fc71c8b882c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11305 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11306 + │ args: jj prev --edit --color always 11307 + ○ f1c9cb8377b5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11308 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11309 + │ args: jj next --edit --color always 11310 + ○ a499bf3496d5 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11311 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11312 + │ args: jj prev --edit --color always 11313 + ○ 89dbc96c27f7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11314 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11315 + │ args: jj next --edit --color always 11316 + ○ 0e0eb171574f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11317 + │ next: c3e259d4c40f -> editing 521c21d7e342 11318 + │ args: jj next --edit --color always 11319 + ○ 3a339a49d855 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11320 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11321 + │ args: jj prev --edit --color always 11322 + ○ be038bce99ee eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11323 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11324 + │ args: jj prev --edit --color always 11325 + ○ c275a93a9fdf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11326 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11327 + │ args: jj next --edit --color always 11328 + ○ 1a162eec5853 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11329 + │ next: c3e259d4c40f -> editing 521c21d7e342 11330 + │ args: jj next --edit --color always 11331 + ○ a0553eceaf86 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11332 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11333 + │ args: jj prev --edit --color always 11334 + ○ f13ef21a91fd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11335 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11336 + │ args: jj prev --edit --color always 11337 + ○ 45555b272b38 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11338 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11339 + │ args: jj next --edit --color always 11340 + ○ 9a3d1cb3a616 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11341 + │ next: c3e259d4c40f -> editing 521c21d7e342 11342 + │ args: jj next --edit --color always 11343 + ○ b6acf5153748 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11344 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11345 + │ args: jj prev --edit --color always 11346 + ○ acc7561596ea eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11347 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11348 + │ args: jj prev --edit --color always 11349 + ○ 552c8cae9b4f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11350 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11351 + │ args: jj next --edit --color always 11352 + ○ d4ce5209c1ae eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11353 + │ next: c3e259d4c40f -> editing 521c21d7e342 11354 + │ args: jj next --edit --color always 11355 + ○ ee6a71692233 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11356 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11357 + │ args: jj prev --edit --color always 11358 + ○ eb1aff4779b9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11359 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11360 + │ args: jj prev --edit --color always 11361 + ○ bb7776dc84b3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11362 + │ next: 521c21d7e342 -> editing 2e8df5e76d5d 11363 + │ args: jj next --edit --color always 11364 + ○ cbb5b3dd8bbc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11365 + │ next: c3e259d4c40f -> editing 521c21d7e342 11366 + │ args: jj next --edit --color always 11367 + ○ 8cfc90db4225 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11368 + │ prev: 521c21d7e342 -> editing c3e259d4c40f 11369 + │ args: jj prev --edit --color always 11370 + ○ 227d2056026b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11371 + │ prev: 2e8df5e76d5d -> editing 521c21d7e342 11372 + │ args: jj prev --edit --color always 11373 + ○ 3f2f9f0acdf2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11374 + │ snapshot working copy 11375 + │ args: jj log 11376 + ○ ce9b59ecd88f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11377 + │ snapshot working copy 11378 + │ args: jj log --color always 11379 + ○ bd500d890bdc eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11380 + │ commit 90f2e6343227cd1e1b548125720cfa540c1ea99b 11381 + │ args: jj commit -m 'coloured output doesn\'t crash' 11382 + ○ b6227f6ffda3 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11383 + │ next: c3e259d4c40f -> editing 90f2e6343227 11384 + │ args: jj next --edit --color always 11385 + ○ 8dde3b915363 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11386 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11387 + │ args: jj prev --edit --color always 11388 + ○ db850233e2c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11389 + │ next: c3e259d4c40f -> editing 90f2e6343227 11390 + │ args: jj next --edit --color always 11391 + ○ cc9b8d8bd163 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11392 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11393 + │ args: jj prev --edit --color always 11394 + ○ 76658edd2e06 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11395 + │ next: c3e259d4c40f -> editing 90f2e6343227 11396 + │ args: jj next --edit --color always 11397 + ○ 08535b0a2712 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11398 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11399 + │ args: jj prev --edit --color always 11400 + ○ 2ea5ebd7e56b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11401 + │ next: c3e259d4c40f -> editing 90f2e6343227 11402 + │ args: jj next --edit 11403 + ○ 8ae69b1ed672 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11404 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11405 + │ args: jj prev --edit 11406 + ○ cf8779e0f3d4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11407 + │ next: c3e259d4c40f -> editing 90f2e6343227 11408 + │ args: jj next --edit 11409 + ○ ff800600031d eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11410 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11411 + │ args: jj prev --edit 11412 + ○ 338e61aff388 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11413 + │ next: c3e259d4c40f -> editing 90f2e6343227 11414 + │ args: jj next --edit 11415 + ○ c12bdbdc91e4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11416 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11417 + │ args: jj prev --edit 11418 + ○ 9c0e28d573e0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11419 + │ next: c3e259d4c40f -> editing 90f2e6343227 11420 + │ args: jj next --edit 11421 + ○ f9a529943492 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11422 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11423 + │ args: jj prev --edit 11424 + ○ f184bbd7591a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11425 + │ next: c3e259d4c40f -> editing 90f2e6343227 11426 + │ args: jj next --edit 11427 + ○ af7185cc0530 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11428 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11429 + │ args: jj prev --edit 11430 + ○ ff437a3c151f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11431 + │ next: c3e259d4c40f -> editing 90f2e6343227 11432 + │ args: jj next --edit 11433 + ○ 76c08bd4cd7e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11434 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11435 + │ args: jj prev --edit 11436 + ○ 71802ff474fe eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11437 + │ next: c3e259d4c40f -> editing 90f2e6343227 11438 + │ args: jj next --edit 11439 + ○ 6bbff410b809 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11440 + │ prev: 90f2e6343227 -> editing c3e259d4c40f 11441 + │ args: jj prev --edit 11442 + ○ 74055f627673 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11443 + │ undo operation 37033e64433ec9ffeb78b8b2385317546db529f3e598bfac36841a82e26247bf6867dadcddc658ac4a600d1d3c893d7ef7e8900e6823d6e9f0ebdd5b4b5abad9 11444 + │ args: jj undo 11445 + ○ 37033e64433e eli@eli-nixos-xps 4 months ago, lasted 6 seconds 11446 + │ edit commit 90f2e6343227cd1e1b548125720cfa540c1ea99b 11447 + │ args: jj diffedit 11448 + ○ 5ff0b2824157 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11449 + │ snapshot working copy 11450 + │ args: jj diffedit 11451 + ○ 4fc1e13a19ff eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11452 + │ snapshot working copy 11453 + ○ 14424d5306c0 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11454 + │ undo operation 7dcfbc3780b280cc11bb2fb0d5cf9075b3f7fac3aac71059ebede06347dc7f8ef3799ecbbdf785ac8a9f0df052808bbdfbb6cb164ee7709bd443fdb6b2f878d7 11455 + │ args: jj undo 11456 + ○ 7dcfbc3780b2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11457 + │ undo operation 95b602744a8fe36708030676b2e1f40ee58f40cbb3e4beb523d0fd8da02d7b718cea7a72308154641afd811cbaa5188c4c68c9f2c6c273c401b01ddae7b889c8 11458 + │ args: jj undo 11459 + ○ 95b602744a8f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11460 + │ undo operation 72c1ec8c7d392bd9987f66baa8588e47db18fe62f9122925955838336a4e6d25810e1ce633490b04c5ce2441f734b09b237341a03aa07755ba03b17849fee228 11461 + │ args: jj undo 11462 + ○ 72c1ec8c7d39 eli@eli-nixos-xps 4 months ago, lasted 24 seconds 11463 + │ unsquash commit 0b23d59660dde14672186533f83410c817fe2253 11464 + │ args: jj unsquash 11465 + ○ c7dd5622e710 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11466 + │ edit commit 0b23d59660dde14672186533f83410c817fe2253 11467 + ○ 2b09d8e6834c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11468 + │ edit commit c3e259d4c40f5266866c071ebd0ae26ed345db8b 11469 + ○ 61ecf73f26dd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11470 + │ edit commit 0b23d59660dde14672186533f83410c817fe2253 11471 + ○ fe8405f4bb65 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11472 + │ undo operation ef2d82b718a7c7459a43bdd8165a187559d14b379a8290cf20f057d1de7adf07954c426dfbae3bc4475c714684c09ceabe2366de2d6f4446f623c9116c942132 11473 + │ args: jj undo 11474 + ○ ef2d82b718a7 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11475 + │ unsquash commit 5c4af7c8dcc487218176b163a768f2d9dac7af94 11476 + │ args: jj unsquash 11477 + ○ 1102529644a1 eli@eli-nixos-xps 4 months ago, lasted 7 seconds 11478 + │ squash commits into 64547a51e86a41425f448e5d7cfbf8c0e8d0e850 11479 + │ args: jj squash 11480 + ○ da2252f9bf53 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11481 + │ next: 64547a51e86a -> editing f51e5ba830a7 11482 + │ args: jj next --edit 11483 + ○ f4c4048bf879 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11484 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11485 + │ args: jj prev --edit 11486 + ○ cd9dc6cc1075 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11487 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11488 + │ args: jj prev --edit 11489 + ○ a5184f545767 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11490 + │ next: f51e5ba830a7 -> editing a2072c652a16 11491 + │ args: jj next --edit 11492 + ○ 55b7036330ca eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11493 + │ next: 64547a51e86a -> editing f51e5ba830a7 11494 + │ args: jj next --edit 11495 + ○ df0cf200dd78 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11496 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11497 + │ args: jj prev --edit 11498 + ○ 2b0256951a63 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11499 + │ next: 64547a51e86a -> editing f51e5ba830a7 11500 + │ args: jj next --edit 11501 + ○ 99161323247e eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11502 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11503 + │ args: jj prev --edit 11504 + ○ b63f9ee657b1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11505 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11506 + │ args: jj prev --edit 11507 + ○ a3be6b60cc83 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11508 + │ next: f51e5ba830a7 -> editing a2072c652a16 11509 + │ args: jj next --edit 11510 + ○ 1672dd057331 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11511 + │ next: 64547a51e86a -> editing f51e5ba830a7 11512 + │ args: jj next --edit 11513 + ○ 322e3e21b114 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11514 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11515 + │ args: jj prev --edit 11516 + ○ 2b91c9115816 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11517 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11518 + │ args: jj prev --edit 11519 + ○ d13b9782f928 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11520 + │ next: f51e5ba830a7 -> editing a2072c652a16 11521 + │ args: jj next --edit 11522 + ○ c06406de9bec eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11523 + │ next: 64547a51e86a -> editing f51e5ba830a7 11524 + │ args: jj next --edit 11525 + ○ 191f39b50a03 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11526 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11527 + │ args: jj prev --edit 11528 + ○ 7ddb6f9f7f7d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11529 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11530 + │ args: jj prev --edit 11531 + ○ e9fe8388c223 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11532 + │ next: f51e5ba830a7 -> editing a2072c652a16 11533 + │ args: jj next --edit 11534 + ○ 56320a7efdbf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11535 + │ next: 64547a51e86a -> editing f51e5ba830a7 11536 + │ args: jj next --edit 11537 + ○ 8683910c46cc eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11538 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11539 + │ args: jj prev --edit 11540 + ○ 3228ecd65eed eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11541 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11542 + │ args: jj prev --edit 11543 + ○ bc86e91f8c45 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11544 + │ next: f51e5ba830a7 -> editing a2072c652a16 11545 + │ args: jj next --edit 11546 + ○ b14a7306430c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11547 + │ next: 64547a51e86a -> editing f51e5ba830a7 11548 + │ args: jj next --edit 11549 + ○ 19d12c365774 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11550 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11551 + │ args: jj prev --edit 11552 + ○ 091d4d50f84c eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11553 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11554 + │ args: jj prev --edit 11555 + ○ 29827c5ab0a6 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11556 + │ next: f51e5ba830a7 -> editing a2072c652a16 11557 + │ args: jj next --edit 11558 + ○ 35f4390f3a70 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11559 + │ next: 64547a51e86a -> editing f51e5ba830a7 11560 + │ args: jj next --edit 11561 + ○ 13645836db4a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11562 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11563 + │ args: jj prev --edit 11564 + ○ dfcfae826731 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11565 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11566 + │ args: jj prev --edit 11567 + ○ 9d3ae4dfd316 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11568 + │ prev: c57d0697f3ae -> editing a2072c652a16 11569 + │ args: jj prev --edit 11570 + ○ eb127aefcc53 eli@eli-nixos-xps 4 months ago, lasted 10 milliseconds 11571 + │ next: caf7abf92a9c -> a2072c652a16 11572 + │ args: jj next 11573 + ○ f11f0cfc71ae eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11574 + │ next: 39a5a9614fd5 -> f51e5ba830a7 11575 + │ args: jj next 11576 + ○ 73862d6982de eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11577 + │ next: 4cbf3b07bf3d -> 64547a51e86a 11578 + │ args: jj next 11579 + ○ ade9498294ef eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11580 + │ prev: d4994ad7ce03 -> 000000000000 11581 + │ args: jj prev 11582 + ○ dd78e1c58afd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11583 + │ prev: a2072c652a16 -> 64547a51e86a 11584 + │ args: jj prev 11585 + ○ c79708df4de1 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11586 + │ next: f51e5ba830a7 -> editing a2072c652a16 11587 + │ args: jj next --edit 11588 + ○ 9b445ebb6437 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11589 + │ next: 64547a51e86a -> editing f51e5ba830a7 11590 + │ args: jj next --edit 11591 + ○ 871ec534bb1f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11592 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11593 + │ args: jj prev --edit 11594 + ○ 14c42d029fe4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11595 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11596 + │ args: jj prev --edit 11597 + ○ 87f675434e11 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11598 + │ next: f51e5ba830a7 -> editing a2072c652a16 11599 + │ args: jj next --edit 11600 + ○ 21c92e2c9f01 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11601 + │ next: 64547a51e86a -> editing f51e5ba830a7 11602 + │ args: jj next --edit 11603 + ○ 2409bfee4f6c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11604 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11605 + │ args: jj prev --edit 11606 + ○ dd19a36d22c7 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11607 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11608 + │ args: jj prev --edit 11609 + ○ 62f5810c773f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11610 + │ prev: 5ef01377ca95 -> editing a2072c652a16 11611 + │ args: jj prev --edit 11612 + ○ da7e56d58b3c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11613 + │ next: 151d99729d26 -> a2072c652a16 11614 + │ args: jj next 11615 + ○ 220709d07840 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11616 + │ next: 555dbf1a5cd9 -> f51e5ba830a7 11617 + │ args: jj next 11618 + ○ fa7978636887 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11619 + │ next: 39844045939a -> 64547a51e86a 11620 + │ args: jj next 11621 + ○ 81a2a721b4cd eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11622 + │ prev: a8704a770ccb -> 000000000000 11623 + │ args: jj prev 11624 + ○ 0638337e8d02 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11625 + │ prev: b15bb146134a -> 64547a51e86a 11626 + │ args: jj prev 11627 + ○ 598662ae7891 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11628 + │ prev: 36c97ec52784 -> f51e5ba830a7 11629 + │ args: jj prev 11630 + ○ 74975067964a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11631 + │ next: 61f560878ce6 -> a2072c652a16 11632 + │ args: jj next 11633 + ○ f9865c28dfbf eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11634 + │ next: 8e95b7cbec8a -> f51e5ba830a7 11635 + │ args: jj next 11636 + ○ 155954502aeb eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11637 + │ next: dc8628ac7fb9 -> 64547a51e86a 11638 + │ args: jj next 11639 + ○ 6cb61099ba02 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11640 + │ prev: c46b7a59af90 -> 000000000000 11641 + │ args: jj prev 11642 + ○ cc6f33eb1752 eli@eli-nixos-xps 4 months ago, lasted 9 milliseconds 11643 + │ prev: a2072c652a16 -> 64547a51e86a 11644 + │ args: jj prev 11645 + ○ 8e1c59c3eec1 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11646 + │ next: f51e5ba830a7 -> editing a2072c652a16 11647 + │ args: jj next --edit 11648 + ○ 9e3141f83a60 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11649 + │ next: 64547a51e86a -> editing f51e5ba830a7 11650 + │ args: jj next --edit 11651 + ○ 43bba422810f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11652 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11653 + │ args: jj prev --edit 11654 + ○ 3c5b99c130b4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11655 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11656 + │ args: jj prev --edit 11657 + ○ 8f2218e5bb63 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11658 + │ next: f51e5ba830a7 -> editing a2072c652a16 11659 + │ args: jj next --edit 11660 + ○ 523ea5b27511 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11661 + │ next: 64547a51e86a -> editing f51e5ba830a7 11662 + │ args: jj next --edit 11663 + ○ f958c12f5df4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11664 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11665 + │ args: jj prev --edit 11666 + ○ c2d6aa7af072 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11667 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11668 + │ args: jj prev --edit 11669 + ○ e1e751302fc2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11670 + │ next: f51e5ba830a7 -> editing a2072c652a16 11671 + │ args: jj next --edit 11672 + ○ 4062f3277d8b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11673 + │ next: 64547a51e86a -> editing f51e5ba830a7 11674 + │ args: jj next --edit 11675 + ○ 5741e220973b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11676 + │ prev: f51e5ba830a7 -> editing 64547a51e86a 11677 + │ args: jj prev --edit 11678 + ○ babb19f96584 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11679 + │ prev: a2072c652a16 -> editing f51e5ba830a7 11680 + │ args: jj prev --edit 11681 + ○ f501c83a8861 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11682 + │ next: f51e5ba830a7 -> editing a2072c652a16 11683 + │ args: jj next --edit 11684 + ○ 1262f53eeed9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11685 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 11686 + ○ 4058d89dd0d3 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11687 + │ edit commit a2072c652a1632397e60893d00dce335e68d23db 11688 + ○ cdcdfb3b4076 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11689 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 11690 + ○ 32206ee89d15 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11691 + │ edit commit 64547a51e86a41425f448e5d7cfbf8c0e8d0e850 11692 + ○ f5ad5e5e25e7 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11693 + │ edit commit a2072c652a1632397e60893d00dce335e68d23db 11694 + ○ e33b2d6d28b9 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11695 + │ edit commit f51e5ba830a7e60c6bc86b4ced250645ba02962c 11696 + ○ fcbfae064d05 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11697 + │ prev: 2a579b88cc84 -> 64547a51e86a 11698 + │ args: jj prev 11699 + ○ a6688eaa5bfa eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11700 + │ prev: d2af1208fb95 -> f51e5ba830a7 11701 + │ args: jj prev 11702 + ○ 3f91609c5a9b eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11703 + │ next: 588904613ee2 -> a2072c652a16 11704 + │ args: jj next 11705 + ○ 6fe7d9668d9a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11706 + │ next: 9a4dd50233bb -> f51e5ba830a7 11707 + │ args: jj next 11708 + ○ 55ad0592346f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11709 + │ next: 9810d90dfee7 -> 64547a51e86a 11710 + │ args: jj next 11711 + ○ aba55fc904ac eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11712 + │ prev: 50b4191124b3 -> 000000000000 11713 + │ args: jj prev 11714 + ○ 6cdd740bbd12 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11715 + │ next: 554e68636db9 -> 64547a51e86a 11716 + │ args: jj next 11717 + ○ 6c88d131b5bd eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11718 + │ prev: 535261cfc413 -> 000000000000 11719 + │ args: jj prev 11720 + ○ 8e0e50968c93 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11721 + │ prev: 823b477c9542 -> 64547a51e86a 11722 + │ args: jj prev 11723 + ○ 27c60b494456 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11724 + │ prev: 435c7c05ab27 -> f51e5ba830a7 11725 + │ args: jj prev 11726 + ○ ae4bd7ac3f86 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11727 + │ next: 3b6e49cd68f5 -> a2072c652a16 11728 + │ args: jj next 11729 + ○ ef00896e0c21 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11730 + │ next: c60e81ca444e -> f51e5ba830a7 11731 + │ args: jj next 11732 + ○ d96977f233d1 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11733 + │ next: e8507bb34355 -> 64547a51e86a 11734 + │ args: jj next 11735 + ○ 7bde8707bb1a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11736 + │ prev: 065946532d85 -> 000000000000 11737 + │ args: jj prev 11738 + ○ 4b8d268b7cbf eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11739 + │ prev: 0fe70a6f26e1 -> 64547a51e86a 11740 + │ args: jj prev 11741 + ○ 44d1ab3c4a9f eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11742 + │ prev: 83fa2287b4dd -> f51e5ba830a7 11743 + │ args: jj prev 11744 + ○ 8120b0742e20 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11745 + │ next: c5a2fbf8234f -> a2072c652a16 11746 + │ args: jj next 11747 + ○ 2aab219c506a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11748 + │ next: c8a615582bab -> f51e5ba830a7 11749 + │ args: jj next 11750 + ○ 06c63230bc24 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11751 + │ next: c86c2ee7e6ec -> 64547a51e86a 11752 + │ args: jj next 11753 + ○ 1f2aea1ec600 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11754 + │ prev: e8800a74d093 -> 000000000000 11755 + │ args: jj prev 11756 + ○ f1254e69306d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11757 + │ prev: 82b3d3a6987c -> 64547a51e86a 11758 + │ args: jj prev 11759 + ○ 843ff0a62d5a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11760 + │ prev: 1be6b4c9df74 -> f51e5ba830a7 11761 + │ args: jj prev 11762 + ○ 40ccea6d1e1b eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11763 + │ next: aa9ce0dae6c8 -> a2072c652a16 11764 + │ args: jj next 11765 + ○ cfbf87cc77c2 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11766 + │ next: 33b8af188493 -> f51e5ba830a7 11767 + │ args: jj next 11768 + ○ 65399009038a eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11769 + │ next: c1191b2985df -> 64547a51e86a 11770 + │ args: jj next 11771 + ○ 20851e25f4d4 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11772 + │ prev: d6b537f80f8f -> 000000000000 11773 + │ args: jj prev 11774 + ○ 846c128d9cde eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11775 + │ prev: a9664e6f8ac3 -> 64547a51e86a 11776 + │ args: jj prev 11777 + ○ 1dd7ced8579c eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11778 + │ prev: ef63a727a961 -> f51e5ba830a7 11779 + │ args: jj prev 11780 + ○ f56cc38fe954 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11781 + │ next: e2cbacd9c678 -> a2072c652a16 11782 + │ args: jj next 11783 + ○ 49a42d91d0e3 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11784 + │ next: 0552920ed3df -> f51e5ba830a7 11785 + │ args: jj next 11786 + ○ a25154bf44f2 eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11787 + │ next: 9d86882ee61c -> 64547a51e86a 11788 + │ args: jj next 11789 + ○ 1dcde0f1715d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11790 + │ prev: 8cc8fd810b07 -> 000000000000 11791 + │ args: jj prev 11792 + ○ e5634c0f1e40 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11793 + │ prev: 6c87d695c928 -> 64547a51e86a 11794 + │ args: jj prev 11795 + ○ 20916278b671 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11796 + │ prev: 58948485c266 -> f51e5ba830a7 11797 + │ args: jj prev 11798 + ○ fb85019b5ac5 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11799 + │ next: 447e56e222ff -> a2072c652a16 11800 + │ args: jj next 11801 + ○ 2cef60a92165 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11802 + │ prev: 21c27850c6c5 -> f51e5ba830a7 11803 + │ args: jj prev 11804 + ○ f30c326099f4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11805 + │ commit 916b45f151ea0e1d7fc957aa3b73a36b27c4412b 11806 + │ args: jj commit -m remove-hi2 11807 + ○ 10ab3b46b3a4 eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11808 + │ snapshot working copy 11809 + │ args: jj commit -m remove-hi2 11810 + ○ 7c77e8d8c00d eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11811 + │ commit cc1302d6212a7278c448c19e55a2b6b071a1f528 11812 + │ args: jj commit -m hi2 11813 + ○ 5a28b20206ec eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11814 + │ snapshot working copy 11815 + │ args: jj commit -m hi2 11816 + ○ c34268584efe eli@eli-nixos-xps 4 months ago, lasted 2 milliseconds 11817 + │ commit f0b286a7aca9ad647c597793c629037db53f8a0a 11818 + │ args: jj commit -m hi 11819 + ○ 424b51f2ffff eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11820 + │ snapshot working copy 11821 + │ args: jj commit -m hi 11822 + ○ 130c403d1f1a eli@eli-nixos-xps 4 months ago, lasted less than a microsecond 11823 + │ add workspace 'default' 11824 + ○ 9b1addb6dfde eli@eli-nixos-xps 4 months ago, lasted 1 millisecond 11825 + │ initialize repo 11826 + ○ 000000000000 root()