Skip to content

Commit 61ebde7

Browse files
Vampiretnyblom
authored andcommitted
Do not warn about svn:mergeinfo, it is usually taken care about already by creating merge commits or cherry-pick commits
1 parent 7085d41 commit 61ebde7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/svn.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,11 +1059,10 @@ int SvnRevision::fetchUnknownProps(apr_pool_t *pool, const char *key, svn_fs_roo
10591059
const void *propKey;
10601060
for (hi = apr_hash_first(pool, table); hi; hi = apr_hash_next(hi)) {
10611061
apr_hash_this(hi, &propKey, NULL, &propVal);
1062-
if (strcmp((char*)propKey, "svn:ignore")!=0) {
1062+
if (strcmp((char*)propKey, "svn:ignore")!=0 && strcmp((char*)propKey, "svn:mergeinfo") !=0) {
10631063
qWarning() << "WARN: Unknown svn-property" << (char*)propKey << "set to" << ((svn_string_t*)propVal)->data << "for" << key;
10641064
}
10651065
}
10661066

10671067
return EXIT_SUCCESS;
10681068
}
1069-

0 commit comments

Comments
 (0)