forked from lix-project/lix
fetchGit: use "HEAD" as default ref
This commit is contained in:
parent
05cb8e5c5a
commit
e89d02bf03
|
@ -79,7 +79,7 @@ GitInfo exportGit(ref<Store> store, const std::string & uri,
|
||||||
ref = "HEAD"s;
|
ref = "HEAD"s;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ref) ref = "master"s;
|
if (!ref) ref = "HEAD"s;
|
||||||
|
|
||||||
if (rev != "" && !std::regex_match(rev, revRegex))
|
if (rev != "" && !std::regex_match(rev, revRegex))
|
||||||
throw Error("invalid Git revision '%s'", rev);
|
throw Error("invalid Git revision '%s'", rev);
|
||||||
|
|
Loading…
Reference in a new issue