What version control software do you use?
What version control software do you use?
What version control software do you use?
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.
can be nicer
Understatement. It solves almost every problem I've ever had with git.
jj undo
or jj op restore
can always put you back into a good state..gitignore
s up to date and jj
automatically tracks new files.I used to use StackedGit for a while before switching to Jujutusu. While stg
is nice, I think jj
is a huge improvement.
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?
I probably can't give a good technical comparison of the power of git reflog
vs jj op log
, but I find jj op log
much easier to use.