upgrade-zulip-from-git: Check fetch refspecs, not mirror flag.

While the `remote.origin.mirror` boolean being set is a very good
proxy for having been cloned with `--mirror`, is technically only used
when pushing into the remote[1].  What we care about is if fetches
from this remote will overwrite `refs/heads/`, or all of `refs/` --
the latter of which is most likely, from having run `git clone
--bare`.

Detect either of these fetch refspecs, and not the mirror flag.  We
let the upgrade process error out if `remote.origin.fetch` is unset,
as that represents an unexpected state.  We ignore failures to unset
the `remote.origin.mirror` flag, in case it is not set already.

[1]: https://git-scm.com/docs/git-config#Documentation/git-config.txt-remoteltnamegtmirror
This commit is contained in:
Alex Vandiver 2022-06-08 19:33:45 -07:00 committed by Tim Abbott
parent 0430705d13
commit 1639792e9e
1 changed files with 10 additions and 6 deletions

View File

@ -74,14 +74,18 @@ try:
["git", "remote", "set-url", "origin", remote_url], preexec_fn=su_to_zulip
)
# Check to see if it's the old "mirror" configuration
is_mirror = subprocess.check_output(
["git", "config", "--bool", "--default=false", "remote.origin.mirror"],
fetch_spec = subprocess.check_output(
["git", "config", "remote.origin.fetch"],
preexec_fn=su_to_zulip,
text=True,
)
if is_mirror.strip() == "true":
subprocess.check_call(
).strip()
if fetch_spec in ("+refs/*:refs/*", "+refs/heads/*:refs/heads/*"):
# The refspec impinges on refs/heads/ -- this is an old mirror
# configuration.
logging.info("Cleaning up mirrored repository")
# remotes.origin.mirror may not be set -- we do not use
# check_call to ignore errors if it's already missing
subprocess.call(
["git", "config", "--unset", "remote.origin.mirror"],
preexec_fn=su_to_zulip,
)