MCPcopy Create free account
hub / github.com/KDE/kdevelop / import

Method import

plugins/subversion/3rdparty/kdevsvncpp/client_modify.cpp:395–416  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

393 }
394
395 void
396 Client::import(const Path & path,
397 const char * url,
398 const char * message,
399 bool recurse)
400 {
401 Pool pool;
402 svn_client_commit_info_t *commit_info = nullptr;
403
404 m_context->setLogMessage(message);
405
406 svn_error_t * error =
407 svn_client_import(&commit_info,
408 path.c_str(),
409 url,
410 !recurse,
411 *m_context,
412 pool);
413
414 if (error != nullptr)
415 throw ClientException(error);
416 }
417
418 void
419 Client::import(const Path & path,

Callers 3

testBasicMethod · 0.45
testImportIntoDirMethod · 0.45

Calls 3

ClientExceptionClass · 0.85
setLogMessageMethod · 0.45
c_strMethod · 0.45

Tested by 3

testBasicMethod · 0.36
testImportIntoDirMethod · 0.36