Open disketten opened 1 week ago
I ran into a similar thing. In my case, I host a Gitea server on my local network. I solved it by modifying the .gitconfig
of the git server.
uploadpack.allowTipSHA1InWant = true
uploadpack.allowReachableSHA1InWant = true
Reference - https://github.com/go-gitea/gitea/issues/11958
First, thank you for an amazing program!
I have just ran into an issue when installing/syncing an "old" project. My main project depends on an internal project, like this:
pyproject.toml
uv.lock
In the dependency project, I do not use tags or branches to distinguish versions, but only the Git commit ID in the main project's uv.lock file. This causes problems in uv when the dependency project has "moved on" (gotten new commits after the locked one):
Before switching to uv, I used PDM. I guess uv does the "fetch/clone" different, since this use case works in PDM.
Info