mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-10 18:28:16 +00:00
Merge pull request #2713 from libgit2/jamill/push_fetch_first
Update message for error during push
This commit is contained in:
commit
fc6ac074ee
@ -333,7 +333,8 @@ static int revwalk(git_vector *commits, git_push *push)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!git_odb_exists(push->repo->_odb, &spec->roid)) {
|
if (!git_odb_exists(push->repo->_odb, &spec->roid)) {
|
||||||
giterr_set(GITERR_REFERENCE, "Cannot push missing reference");
|
giterr_set(GITERR_REFERENCE,
|
||||||
|
"Cannot push because a reference that you are trying to update on the remote contains commits that are not present locally.");
|
||||||
error = GIT_ENONFASTFORWARD;
|
error = GIT_ENONFASTFORWARD;
|
||||||
goto on_error;
|
goto on_error;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user