| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| jj-v0.36.0-x86_64-pc-windows-msvc.zip | 2025-12-04 | 8.4 MB | |
| jj-v0.36.0-aarch64-apple-darwin.tar.gz | 2025-12-04 | 8.8 MB | |
| jj-v0.36.0-x86_64-apple-darwin.tar.gz | 2025-12-04 | 9.4 MB | |
| jj-v0.36.0-aarch64-pc-windows-msvc.zip | 2025-12-04 | 8.0 MB | |
| jj-v0.36.0-x86_64-unknown-linux-musl.tar.gz | 2025-12-04 | 9.6 MB | |
| jj-v0.36.0-aarch64-unknown-linux-musl.tar.gz | 2025-12-04 | 9.0 MB | |
| jj-v0.36.0-docs-html.tar.gz | 2025-12-04 | 1.7 MB | |
| README.md | 2025-12-04 | 7.3 kB | |
| v0.36.0 source code.tar.gz | 2025-12-04 | 2.2 MB | |
| v0.36.0 source code.zip | 2025-12-04 | 2.6 MB | |
| Totals: 10 Items | 59.8 MB | 1 | |
About
jj is a Git-compatible version control system that is both simple and powerful. See the installation instructions to get started.
Release highlights
- The documentation has moved from https://jj-vcs.github.io/jj/ to https://docs.jj-vcs.dev/.
301 redirects are being issued towards the new domain, so any existing links should not be broken.
-
Fixed race condition that could cause divergent operations when running concurrent
jjcommands in colocated repositories. It is now safe to continuously run e.g.jj logwithout--ignore-working-copyin one terminal while you're running other commands in another terminal. #6830 -
jjnow ignores$PAGERset in the environment and usesless -FRXon most platforms (:builtinon Windows). See the docs for more information, and #3502 for motivation.
Breaking changes
-
In filesets or path patterns, glob matching is enabled by default. You can use
cwd:"path"to match literal paths. -
In the following commands, string pattern arguments are now parsed the same way they are in revsets and can be combined with logical operators:
jj bookmark delete/forget/list/move,jj tag delete/list,jj git clone/fetch/push -
In the following commands, unmatched bookmark/tag names is no longer an error. A warning will be printed instead:
jj bookmark delete/forget/move/track/untrack,jj tag delete,jj git clone/push -
The default string pattern syntax in revsets will be changed to
glob:in a future release. You can opt in to the new default by settingui.revsets-use-glob-by-default=true. -
Upgraded
scm-recordfrom v0.8.0 to v0.9.0. See release notes at https://github.com/arxanas/scm-record/releases/tag/v0.9.0. -
The minimum supported Rust version (MSRV) is now 1.89.
-
On macOS, the deprecated config directory
~/Library/Application Support/jjis not read anymore. Use$XDG_CONFIG_HOME/jjinstead (defaults to~/.config/jj). -
Sub-repos are no longer tracked. Any directory containing
.jjor.gitis ignored. Note that Git submodules are unaffected by this.
Deprecations
-
The
--destination/-darguments forjj rebase,jj split,jj revert, etc. were renamed to--onto/-o. The reasoning is that--onto,--insert-before, and--insert-afterare all destination arguments, so calling one of them--destinationwas confusing and unclear. The old names will be removed at some point in the future, but we realize that they are deep in muscle memory, so you can expect an unusually long deprecation period. -
jj describe --editis deprecated in favor of--editor. -
The config options
git.auto-local-bookmarkandgit.push-new-bookmarksare deprecated in favor ofremotes.<name>.auto-track-bookmarks. For example:toml [remotes.origin] auto-track-bookmarks = "glob:*"For more details, refer to the docs. -
The flag
--allow-newonjj git pushis deprecated. In order to push new bookmarks, please track them withjj bookmark track. Alternatively, consider setting up an auto-tracking configuration to avoid the chore of tracking bookmarks manually. For example:toml [remotes.origin] auto-track-bookmarks = "glob:*"For more details, refer to the docs.
New features
-
jj commit,jj describe,jj squash, andjj splitnow accept--editor, which ensures an editor will be opened with the commit description even if one was provided via--message/-m. -
All
jjcommands show a warning when the providedfilesetexpression doesn't match any files. -
Added
files()template function toDiffStats. This supports per-file stats likelines_added()andlines_removed() -
Added
join()template function. This is different fromseparate()in that it adds a separator between all arguments, even if empty. -
RepoPathtemplate type now has aabsolute() -> Stringmethod that returns the absolute path as a string. -
Added
format_path(path)template alias that controls how file paths are printed withjj file list. -
New built-in revset aliases
visible()andhidden(). -
Unquoted
*is now allowed in revsets.bookmarks(glob:foo*)no longer needs quoting. -
jj prev/next --no-editnow generates an error if the working-copy has some children. -
A new config option
remotes.<name>.auto-track-bookmarkscan be set to a string pattern. New bookmarks matching it will be automatically tracked for the specified remote. See the docs. -
jj lognow supports a--countflag to print the number of commits instead of displaying them.
Fixed bugs
-
jj fixnow prints a warning if a tool failed to run on a file. #7971 -
Shell completion now works with non‑normalized paths, fixing the previous panic and allowing prefixes containing
.or..to be completed correctly. #6861 -
Shell completion now always uses forward slashes to complete paths, even on Windows. This renders completion results viable when using jj in Git Bash. #7024
-
Unexpected keyword arguments now return a parse failure for the
coalesce()andconcat()templating functions. -
Nushell completion script documentation add
-foption, to keep it up to date. #8007 -
Ensured that with Git submodules, remnants of your submodules do not show up in the working copy after running
jj new. #4349
Contributors
Thanks to the people who made this release happen!
- abgox (@abgox)
- ase (@adamse)
- Björn Kautler (@Vampire)
- Bryce Berger (@bryceberger)
- Chase Naples (@cnaples79)
- David Higgs (@higgsd)
- edef (@edef1c)
- Evan Mesterhazy (@emesterhazy)
- Fedor (@sheremetyev)
- Gaëtan Lehmann (@glehmann)
- George Christou (@gechr)
- Hubert Lefevre (@Paluche)
- Ilya Grigoriev (@ilyagr)
- Jonas Greitemann (@jgreitemann)
- Joseph Lou (@josephlou5)
- Julia DeMille (@judemille)
- Kaiyi Li (@06393993)
- Kyle Lippincott (@spectral54)
- Lander Brandt (@landaire)
- Lucio Franco (@LucioFranco)
- Luke Randall (@lukerandall)
- Martin von Zweigbergk (@martinvonz)
- Matt Stark (@matts1)
- Mitchell Skaggs (@magneticflux-)
- Peter Schilling (@schpet)
- Philip Metzger (@PhilipMetzger)
- QingyaoLin (@QingyaoLin)
- Remo Senekowitsch (@senekor)
- Scott Taylor (@scott2000)
- Stephen Jennings (@jennings)
- Steve Klabnik (@steveklabnik)
- Tejas Sanap (@whereistejas)
- Tommi Virtanen (@tv42)
- Velociraptor115 (@Velociraptor115)
- Vincent Ging Ho Yim (@cenviity)
- Yuya Nishihara (@yuja)