We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d7d949 commit 14f731cCopy full SHA for 14f731c
git/annex.go
@@ -1076,6 +1076,8 @@ func parseSyncErrors(messages string) error {
1076
} else if strings.Contains(messages, "Host key verification failed") {
1077
// Bad host key configured
1078
return fmt.Errorf("server key does not match known host key")
1079
+ } else if strings.Contains(messages, "rejected") { // push error: remote is ahead of local
1080
+ return fmt.Errorf("changes were made on the server that have not been downloaded; run 'gin download' to update local copies")
1081
}
1082
return nil
1083
0 commit comments