forked from lix-project/lix
Fix #7146
When fetching a non-local git repo by ref (and no rev), don't consider unrelated cached revs for the same repository.
This commit is contained in:
parent
c7059c9b24
commit
a259084c50
|
@ -485,6 +485,10 @@ struct GitInputScheme : InputScheme
|
|||
}
|
||||
input.attrs.insert_or_assign("ref", *head);
|
||||
unlockedAttrs.insert_or_assign("ref", *head);
|
||||
} else {
|
||||
if (!input.getRev()) {
|
||||
unlockedAttrs.insert_or_assign("ref", input.getRef().value());
|
||||
}
|
||||
}
|
||||
|
||||
if (auto res = getCache()->lookup(store, unlockedAttrs)) {
|
||||
|
|
Loading…
Reference in a new issue