1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
# Installation and setup
## Installation
### Download pre-built binaries for a release
There are [pre-built binaries] of the last released version of `jj` for
Windows, Mac, or Linux (the "musl" version should work on all distributions).
#### Cargo Binstall
If you use [`cargo-binstall`][cargo-binstall], you
can install binaries of the latest `jj` release from GitHub as follows:
```shell
# Will put the jj binary for the latest release in ~/.cargo/bin by default
cargo binstall --strategies crate-meta-data jj-cli
```
Without the `--strategies` option, you may get equivalent binaries that should
be compiled from the same source code.
!!! note
If you'd like to install a prerelease version, you'll need to use one of the
options below.
### Linux
#### From Source
First make sure that you have a Rust version >= 1.84 and that the
`build-essential` package is installed by running something like this:
```shell
sudo apt-get install build-essential
```
Now run either:
```shell
# To install the *prerelease* version from the main branch
cargo install --git https://github.com/jj-vcs/jj.git --locked --bin jj jj-cli
```
or:
```shell
# To install the latest release
cargo install --locked --bin jj jj-cli
```
#### Arch Linux
You can install the `jujutsu` package from the [official extra repository](https://archlinux.org/packages/extra/x86_64/jujutsu/):
```shell
pacman -S jujutsu
```
Or install from the [AUR repository](https://aur.archlinux.org/packages/jujutsu-git) with an [AUR Helper](https://wiki.archlinux.org/title/AUR_helpers):
```shell
yay -S jujutsu-git
```
#### NixOS
If you're on NixOS you can install a **released** version of `jj` using the
[nixpkgs `jujutsu` package](https://search.nixos.org/packages?channel=unstable&show=jujutsu).
To install a **prerelease** version, you can use the flake for this repository.
For example, if you want to run `jj` loaded from the flake, use:
```shell
nix run 'github:jj-vcs/jj'
```
You can also add this flake url to your system input flakes. Or you can
install the flake to your user profile:
```shell
# Installs the prerelease version from the main branch
nix profile install 'github:jj-vcs/jj'
```
#### Homebrew
If you use Homebrew, you can run:
```shell
# Installs the latest release
brew install jj
```
#### Gentoo Linux
`dev-vcs/jj` is available in the [GURU](https://wiki.gentoo.org/wiki/Project:GURU) repository.
Details on how to enable the GURU repository can be found [here](https://wiki.gentoo.org/wiki/Project:GURU/Information_for_End_Users).
Once you have synced the GURU repository, you can install `dev-vcs/jj` via Portage:
```shell
emerge -av dev-vcs/jj
```
#### openSUSE Tumbleweed
`jujutsu` can be installed from the official [openSUSE-Tumbleweed-Oss](http://download.opensuse.org/tumbleweed/repo/oss/) repository:
```shell
zypper install jujutsu
```
### Mac
#### From Source
First make sure that you have a Rust version >= 1.84. You may also need to run:
```shell
xcode-select --install
```
Now run either:
```shell
# To install the *prerelease* version from the main branch
cargo install --git https://github.com/jj-vcs/jj.git \
--locked --bin jj jj-cli
```
or:
```shell
# To install the latest release
cargo install --locked --bin jj jj-cli
```
#### Homebrew
If you use Homebrew, you can run:
```shell
# Installs the latest release
brew install jj
```
#### MacPorts
You can also install `jj` via [the MacPorts `jujutsu`
port][macports]:
```shell
# Installs the latest release
sudo port install jujutsu
```
### Windows
First make sure that you have a Rust version >= 1.84. Now run either:
```shell
# To install the *prerelease* version from the main branch
cargo install --git https://github.com/jj-vcs/jj.git --locked --bin jj jj-cli
```
or:
```shell
# To install the latest release
cargo install --locked --bin jj jj-cli
```
via winget:
```shell
# To install the latest release via winget
winget install jj-vcs.jj
```
## Initial configuration
You may want to configure your name and email so commits are made in your name.
```shell
$ jj config set --user user.name "Martin von Zweigbergk"
$ jj config set --user user.email "martinvonz@google.com"
```
## Command-line completion
To set up command-line completion, source the output of
`jj util completion bash/zsh/fish`. Exactly how to source it
depends on your shell.
Improved completions are also available. They will complete things like
bookmarks, aliases, revisions, operations and files. They can be context aware,
for example they respect the global flags `--repository` and `--at-operation` as
well as some command-specific ones like `--revision`, `--from` and `--to`. You
can activate them with the alternative "dynamic" instructions below. They should
still complete everything the static completions did, so only activate one of
them. Please let us know if you encounter any issues, so we can ensure a smooth
transition once we default to these new completions.
!!! info "Why are the improved completions not the default?"
To generate the dynamic completion script, execute `jj` with `$COMPLETE` set
to the name of your shell (see examples below). See the upstream clap issue
[#3166][clap] for the explanation.
<!-- The content tabs formatting below is optimized for the website and not for GitHub. -->
### Bash
=== "Standard"
```shell
source <(jj util completion bash)
```
=== "Dynamic"
```shell
source <(COMPLETE=bash jj)
```
### Zsh
=== "Standard"
```shell
autoload -U compinit
compinit
source <(jj util completion zsh)
```
=== "Dynamic"
```shell
source <(COMPLETE=zsh jj)
```
### Fish
!!! note
No configuration is required with fish >= 4.0.2 which loads dynamic completions by default.
=== "Standard"
```shell
jj util completion fish | source
```
=== "Dynamic"
```shell
COMPLETE=fish jj | source
```
### Nushell
=== "Standard"
```nu
jj util completion nushell | save completions-jj.nu
use completions-jj.nu * # Or `source completions-jj.nu`
```
### Xonsh
=== "Standard"
```shell
source-bash $(jj util completion)
```
### Powershell
=== "Standard"
Insert this line in your `$PROFILE` file
(usually `$HOME\Documents\PowerShell\Microsoft.PowerShell_profile.ps1`):
```shell
Invoke-Expression (& { (jj util completion power-shell | Out-String) })
```
[cargo-binstall]: https://github.com/cargo-bins/cargo-binstall
[clap]: https://github.com/clap-rs/clap/issues/3166
[Homebrew]: https://brew.sh/
[macports]: https://ports.macports.org/port/jujutsu/
[pre-built binaries]: https://github.com/jj-vcs/jj/releases/latest
|