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

Method branches

plugins/git/gitplugin.cpp:983–989  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

981}
982
983VcsJob* GitPlugin::branches(const QUrl &repository)
984{
985 auto* job = new GitJob(urlDir(repository));
986 *job << "git" << "branch" << "-a";
987 connect(job, &DVcsJob::readyForParsing, this, &GitPlugin::parseGitBranchOutput);
988 return job;
989}
990
991void GitPlugin::parseGitBranchOutput(DVcsJob* job)
992{

Callers 4

refreshMethod · 0.80
testBranchMethod · 0.80
testMergeMethod · 0.80
testBranchingMethod · 0.80

Calls 1

urlDirFunction · 0.70

Tested by 3

testBranchMethod · 0.64
testMergeMethod · 0.64
testBranchingMethod · 0.64