-
I know I can create a new ref out of a commit with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There is "detached metadata" that can change independently of a commit; however, it's not used for much commonly besides signatures. One reason for this is that any such metadata is inherently then not covered by a signature. In most of these situations, you actually want to make a new commit that "inherits" from the previous one, like this:
There isn't yet an ergonomic way via the CLI to inherit all metadata. It is however easy to do this with the shared library API. |
Beta Was this translation helpful? Give feedback.
There is "detached metadata" that can change independently of a commit; however, it's not used for much commonly besides signatures. One reason for this is that any such metadata is inherently then not covered by a signature.
In most of these situations, you actually want to make a new commit that "inherits" from the previous one, like this:
There isn't yet an ergonomic way via the CLI to inherit all metadata. It is however easy to do this with the shared library API.