You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error { code: -3, klass: 9, message: "object not found - no match for id (77f95f14776deb7e120a2a26f7b56abf2903bc62)" }'
The id 77f95f1 from the error message refers to a commit that is of no particular interest and actually weeks behind; I never asked for it.
I was finally able to reproduce the problem Travis encounters by very carefully following how Travis clones the repo:
git clone --depth=50 https://... crate_root
cd crate_root
git fetch origin +refs/pull/414/merge:
git checkout -qf FETCH_HEAD
cargo test
If and only if the repo is cloned recursively the call to ::describe() results in this error, always referring to 77f95f1. The repo does not even have submodules.
My local git client does the right thing and get's the latest commit oid without problems.
Any idea what's going on here? The issue may be related to this one.
The text was updated successfully, but these errors were encountered:
I have a build on travis failing because of a weird git2 error that happens while trying to get a description from a local repo; roughly this code
results in
The id
77f95f1
from the error message refers to a commit that is of no particular interest and actually weeks behind; I never asked for it.I was finally able to reproduce the problem Travis encounters by very carefully following how Travis clones the repo:
If and only if the repo is cloned recursively the call to
::describe()
results in this error, always referring to77f95f1
. The repo does not even have submodules.My local git client does the right thing and get's the latest commit oid without problems.
Any idea what's going on here? The issue may be related to this one.
The text was updated successfully, but these errors were encountered: