https://bugzilla.wikimedia.org/show_bug.cgi?id=44129
--- Comment #42 from Krinkle <[email protected]> --- Worked around it for now by force fetching using `fetch -k --depth 1` and then switching to only having git.wikimedia.org as the remote (dropping gerrit.wikimedia.org entirely for now): $ git remote add mirror https://git.wikimedia.org/git/mediawiki/core.git $ git remote rm origin $ git remote rename mirror origin $ git remote -v origin https://git.wikimedia.org/git/mediawiki/core.git (fetch) origin https://git.wikimedia.org/git/mediawiki/core.git (push) $ git fetch -k --depth 1 origin remote: Counting objects: 33054, done remote: Finding sources: 100% (27705/27705) remote: Getting sizes: 100% (25252/25252) remote: Compressing objects: 99% (1019631/1019645) remote: Total 27705 (delta 15890), reused 14921 (delta 7700) Receiving objects: 100% (27705/27705), 141.58 MiB | 10.39 MiB/s, done. Resolving deltas: 100% (19416/19416), completed with 2419 local objects. From https://git.wikimedia.org/git/mediawiki/core .. * [new branch] REL1_21 -> origin/REL1_21 * [new branch] REL1_22 -> origin/REL1_22 .. * [new branch] wmf/1.23wmf15 -> origin/wmf/1.23wmf15 * [new branch] wmf/1.23wmf16 -> origin/wmf/1.23wmf16 $ git fetch --prune $ git checkout 'master' 0 -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
