git clone of recipe causing errors #65
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
b1d4f12e7d/catalogue/catalogue.go (L63)
This git clone is causing an error. I checked and this also happens when just cloning the repo outside of the go code. It happens for repos I have no local repo for.
I researched the error and seems to be an error only when checking out a branch. The issue is this error could be kinda ignored? But the program can't. Maybe we shoud try and fix the underlying issue tho and figure out why some of the git repos are doing that.
Git is being a Git.
git clone -b main https://git.coopcloud.tech/coop-cloud/peertube.git
works 🙄We solved this in the Bash implementation by doing a clone, then if that failed, do a clone with this main branch flag and if that failed, give up and error out for good. I guess we'll have to do the same.