jj workspaces over the network
0
fork

Configure Feed

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

docs: add cargo install instructions for jj-tandem crate

+28 -1
+11
AGENTS.md
··· 23 23 runs these on the server to ship code upstream. The tandem server is the source 24 24 of truth, with GitHub as a mirror. 25 25 26 + ## Installation 27 + 28 + Published on [crates.io](https://crates.io/crates/jj-tandem) as `jj-tandem`: 29 + 30 + ```bash 31 + cargo install jj-tandem 32 + ``` 33 + 34 + Requires a Rust toolchain and Cap'n Proto compiler (`capnp`). 35 + Or build from source: `cargo build --release`. 36 + 26 37 ## Single binary, two modes 27 38 28 39 ```
+17 -1
README.md
··· 77 77 retry. Two agents committing simultaneously both succeed — CAS contention 78 78 resolves transparently. 79 79 80 - ## Quickstart 80 + ## Install 81 + 82 + Published on [crates.io](https://crates.io/crates/jj-tandem) as `jj-tandem`. 81 83 82 84 ```bash 85 + cargo install jj-tandem 86 + ``` 87 + 88 + This installs the `tandem` binary. Requires a Rust toolchain and 89 + [Cap'n Proto compiler](https://capnproto.org/install.html) (`capnp`). 90 + 91 + To build from source: 92 + 93 + ```bash 94 + git clone https://github.com/laulauland/tandem.git 95 + cd tandem 83 96 cargo build --release 97 + # binary at target/release/tandem 84 98 ``` 99 + 100 + ## Quickstart 85 101 86 102 ### Start a server 87 103