X-Git-Url: http://andersk.mit.edu/gitweb/svn-all-fast-export.git/blobdiff_plain/72da461078a7d04396a2123575f0cabd14e095de..9413f4488b5d0eb39fee8af8edca2e99cf2254ca:/src/repository.cpp diff --git a/src/repository.cpp b/src/repository.cpp index 699e686..72bbd60 100644 --- a/src/repository.cpp +++ b/src/repository.cpp @@ -20,7 +20,7 @@ #include Repository::Repository(const Rules::Repository &rule) - : name(rule.name), processHasStarted(false) + : name(rule.name), commitCount(0), processHasStarted(false) { foreach (Rules::Repository::Branch branchRule, rule.branches) { Branch branch; @@ -45,30 +45,20 @@ Repository::~Repository() void Repository::reloadBranches() { - QHash::Iterator it = branches.begin(), - end = branches.end(); - for ( ; it != end; ++it) { - QString branchRef = it.key(); - if (!branchRef.startsWith("refs/")) - branchRef.prepend("refs/heads/"); + QProcess revParse; + revParse.setWorkingDirectory(name); + revParse.start("git", QStringList() << "rev-parse" << "--symbolic" << "--branches"); + revParse.waitForFinished(); + + if (revParse.exitCode() == 0 && revParse.bytesAvailable()) { + startFastImport(); - bool branchExists; - // does this branch already exist? - QProcess revParse; - revParse.setWorkingDirectory(name); - revParse.start("git-rev-parse", QStringList() << "--verify" << branchRef); - revParse.waitForFinished(); - - if (revParse.exitCode() == 0) - branchExists = true; - else - branchExists = false; - - if (branchExists) { - startFastImport(); - fastImport.write("reset " + branchRef.toUtf8() + - "\nfrom " + branchRef.toUtf8() + "^0\n\n"); - it->created = 1; + while (revParse.canReadLine()) { + QByteArray branchName = revParse.readLine().trimmed(); + + branches[branchName].created = 1; + fastImport.write("reset refs/heads/" + branchName + + "\nfrom refs/heads/" + branchName + "^0\n\n"); } } } @@ -114,8 +104,8 @@ Repository::Transaction *Repository::newTransaction(const QString &branch, const int revnum) { if (!branches.contains(branch)) { - qCritical() << branch << "is not a known branch in repository" << name; - return 0; + qWarning() << branch << "is not a known branch in repository" << name << endl + << "Going to create it automatically"; } Transaction *txn = new Transaction;