you are viewing a single comment's thread
view the rest of the comments
[–] 6 points 1 year ago* (1 child)

I've been trying out Jujutsu recently.

It's compatible with git repos. The workflow takes a little while to get used to but can be nicer to work with.

  • source
  • hideshow 2 child comments
  • [–] 3 points 1 year ago (1 child)

    can be nicer

    Understatement. It solves almost every problem I've ever had with git.

    1. No more destructive commands. jj undo or jj op restore can always put you back into a good state.
    2. Merge conflicts can be ignored until you want to resolve them.
    3. No "unstaged files" to deal with. Just keep your .gitignores up to date and jj automatically tracks new files.
    4. Rebasing and patch management is just incredibly simple.
    5. It actually has a nice default view of the commit graph.

    I used to use StackedGit for a while before switching to Jujutusu. While stg is nice, I think jj is a huge improvement.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 1 year ago (1 child)

    Aside from the obvious cases like pruning or garbage collection that remove orphaned or dangling commits, is there anything else destructive that git reflog can't help recover from?

  • source
  • parent
  • hideshow 2 child comments