Clone can succeed.
Failed to clone: open C:\Users\ContainerAdministrator\AppData\Local\Temp\cirrus-ci-build\liblumen_beam\src\beam\reader\chunk\aux.rs: The system cannot find the file specified.!
Just a heads up. I've reproduced the issue on Windows here. The error is coming from Go when it makes a syscall. Continue investigating...
BTW here is the repro https://github.com/fkorotkov/go-git-clone-windows-issue
Created https://github.com/src-d/go-git/issues/1222 with go-git. @KronicDeth please don't remove windows branch for now ;-)
You can not create a file aux.<extension> on Windows, and I assume this is the reason the aux.rs file throws an error while cloning the repository..
For a full list of files names that are not allowed on Windows see here. There maybe workarounds, but I do not know, if they break something.
@swaldhoer thank you! Seem renaming fixed the issue! Wow, super grateful for your answer!