]> andersk Git - svn-all-fast-export.git/blobdiff - src/repository.cpp
Allow one to have references to outside refs/heads
[svn-all-fast-export.git] / src / repository.cpp
index b85988514307596d0fa76e923d2152a3b0ca4299..20ea04918eac28c88add19d0a826a91616aa296c 100644 (file)
@@ -25,7 +25,7 @@ Repository::Repository(const Rules::Repository &rule)
     foreach (Rules::Repository::Branch branchRule, rule.branches) {
         Branch branch;
         branch.branchFrom = branchRule.branchFrom;
-        if (!branch.branchFrom.startsWith("refs/heads/"))
+        if (!branch.branchFrom.startsWith("refs/"))
             branch.branchFrom.prepend("refs/heads/");
         branch.isCreated = false;
 
@@ -53,7 +53,7 @@ void Repository::reloadBranches()
                                     end = branches.end();
     for ( ; it != end; ++it) {
         QString branchRef = it.key();
-        if (!branchRef.startsWith("refs/heads/"))
+        if (!branchRef.startsWith("refs/"))
             branchRef.prepend("refs/heads/");
 
         bool branchExists;
@@ -81,7 +81,7 @@ Repository::Transaction *Repository::newTransaction(const QString &branch, const
                                                     int revnum)
 {
     if (!branches.contains(branch)) {
-        qCritical() << branch << "is not known in repository" << name;
+        qCritical() << branch << "is not a known branch in repository" << name;
         return 0;
     }
 
@@ -162,7 +162,7 @@ void Repository::Transaction::commit()
 
     {
         QByteArray branchRef = branch;
-        if (!branchRef.startsWith("refs/heads/"))
+        if (!branchRef.startsWith("refs/"))
             branchRef.prepend("refs/heads/");
 
         QTextStream s(&repository->fastImport);
This page took 0.02605 seconds and 4 git commands to generate.