Replies: 1 comment 1 reply
-
#7175 and/or #7275 will fix the problem. |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
We have a repository where particular tags are updated (force-pushed) regularly. For example, the
latest-dev
tag is moved to show what was most recently deployed to thedev
environment.Since these tags are core to our workflow, I updated the
.git/config
to fetch tags:Unfortunately,
jj git fetch
will only fetch new tags, it never updates tags that have been replaced. This has caused my to accidentally create a change on top of a very old tag without realizing it.Running a
git fetch
afterjj git fetch
resolves the issue:As I have proven to myself to be unable to remember to do this when needed, I have come asking if there is a way to configure this behavior for this repo? (or perhaps I've done something entirely incorrectly, in which case, I would love to know)
Beta Was this translation helpful? Give feedback.
All reactions