-
I made a How to I make My goal is to have the Justfile exist again, and have the contents before it disappeared.
and
I believe git got in a detached HEAD state when I re-wrote the author on an immutable commit.
Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Use
By the way, git will almost always be in a detached HEAD state while using jj. This is normal and not a problem. jj will keep git's index and HEAD up to date as you create and edit revisions. |
Beta Was this translation helpful? Give feedback.
-
In This FAQ has more information about resuming working on an existing change: https://jj-vcs.github.io/jj/latest/FAQ/#how-do-i-resume-working-on-an-existing-change |
Beta Was this translation helpful? Give feedback.
Use
jj edit kyxtyxlx
to edit a specific change.git switch foo
will always result in jj creating a new empty change on top offoo
. There isn't a way to do the equivalent ofjj edit
using a git command.By the way, git will almost always be in a detached HEAD state while using jj. This is normal and not a problem. jj will keep git's index and HEAD up to date as you create and edit revisions.