From 8d7b49e591879c12c863aabb65c66751ba8b697c Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 24 Dec 2007 12:51:17 -0200 Subject: [PATCH] Allow one to have references to outside refs/heads --- src/repository.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/repository.cpp b/src/repository.cpp index 1c7f8ba..20ea049 100644 --- a/src/repository.cpp +++ b/src/repository.cpp @@ -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; @@ -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); -- 2.45.1