Replies: 1 comment
-
|
Oh it looks like |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm working on a big refactor in my codebase, and I wanted to check if there was a better way to approach it in jujutsu.
So my current setup looks like this:
where myworkingcopy has like 50 changed files. I want to split these out into separate commits all based off main, so my desired end-state would be something like:
what I'm doing right now (with the help of jjui) is jj spliting on my "working copy" commit, selecting a group of files that should go together into its own commit. Which gives me:
and then I do it again, which gives me
and then I rebase b onto main, which gives me
rinse and repeat. Is there a better way to do this? Maybe a way to jj split out from my current commit, but have the new commit not be a descendant of my current commit?
Beta Was this translation helpful? Give feedback.
All reactions