79080825

Date: 2024-10-12 10:45:02
Score: 1.5
Natty:
Report link

Didn't find the description of the root-cause. The workable workaround happened to be push to remote branches in bundles, followed by git push --mirror:

git clone --mirror github.myorg.com/EXAMPLE-USER/REPOSITORY.git 
git remote add ssh_mirror github.myorg.com/EXAMPLE-USER/NEW-REPOSITORY.git git push ssh_mirror refs/heads/archive/2024/A* 
git push ssh_mirror refs/heads/archive/2024/B* 
.... 
git push ssh_mirror refs/heads/archive/2024/z* 
git push --mirror ssh_mirror 
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (1):
Posted by: vova25