Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
The
remote_branches()
revset no longer includes branches exported to the Gitrepository (so called Git-tracking branches.)
jj branch set
no longer creates a new branch. Usejj branch create
instead.
jj init --git
in an existing Git repository now errors and exits rather thancreating a second Git store.
New features
jj workspace add
can now take multiple--revision
arguments, which willcreate a new workspace with its working-copy commit on top of all the parents,
as if you had run
jj new r1 r2 r3 ...
.You can now set
git.abandon-unreachable-commits = false
to disable theusual behavior where commits that became unreachable in the Git repo are
abandoned (#2504).
jj new
gained a--no-edit
option to prevent editing the newly createdcommit. For example,
jj new a b --no-edit -m Merge
creates a merge commitwithout affecting the working copy.
jj rebase
now takes the flag--skip-empty
, which doesn't copy over commitsthat would become empty after a rebase.
There is a new
jj util gc
command for cleaning up the repository storage.For now, it simply runs
git gc
on the backing Git repo (when using the Gitbackend).
Fixed bugs
jj status
would disagreewith the actual file content.
#2654
Contributors
Thanks to the people who made this release happen!