If the change is deemed to be innocuous then I guess that there's no harm in adding it. But I just find it strange to change things when the root cause hasn't been identified. I did this - a clean clone of the OpenOCD GitHub sources and then a (brute force) grep of all files in `.git` for any mention of "https://repo.or.cz/jimtcl.git" and found none. Might the problem with a reference to "https://repo.or.cz/jimtcl.git" result from an old clone of sources or something else in the user's local environment?
``` git clone https://github.com/openocd-org/openocd Cloning into 'openocd'... remote: Enumerating objects: 81489, done. remote: Counting objects: 100% (6117/6117), done. remote: Compressing objects: 100% (748/748), done. remote: Total 81489 (delta 5558), reused 5538 (delta 5366), pack-reused 75372 Receiving objects: 100% (81489/81489), 37.19 MiB | 5.26 MiB/s, done. Resolving deltas: 100% (66608/66608), done. cd openocd/.git find . -type f -name "*" -print -exec grep "https://repo.or.cz/jimtcl.git" {} \; ./config ./index ./packed-refs ./HEAD ./info/exclude ./refs/remotes/origin/HEAD ./refs/heads/master ./hooks/pre-receive.sample ./hooks/pre-rebase.sample ./hooks/prepare-commit-msg.sample ./hooks/pre-applypatch.sample ./hooks/pre-commit.sample ./hooks/fsmonitor-watchman.sample ./hooks/post-update.sample ./hooks/applypatch-msg.sample ./hooks/pre-merge-commit.sample ./hooks/pre-push.sample ./hooks/commit-msg.sample ./hooks/update.sample ./hooks/push-to-checkout.sample ./description ./objects/pack/pack-fd7b20ee48171e2ac55ffab1029d8b253877e45f.pack ./objects/pack/pack-fd7b20ee48171e2ac55ffab1029d8b253877e45f.idx ./logs/HEAD ./logs/refs/remotes/origin/HEAD ./logs/refs/heads/master ``` I also did the same after running `bootstrap` but still didn't find anything.