From 008b28e0f4c48de8d740c51c053020d1a36315bf Mon Sep 17 00:00:00 2001 From: Raja R Harinath Date: Thu, 22 Jul 2010 18:32:21 +0530 Subject: Provide a way to merge repositories Suppose you have multiple repositories in SVN that you want to merge into a single one in GIT, it can get very messy to handle all the special-case rules. Instead, we introduce a new "forwarding repository" concept, which looks like repository subordinate repository unified prefix foo/ end repository This forwards all commits on the "subordinate" SVN tree to the "unified" GIT tree, with each file prefixed with "foo/". --- src/repository.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/repository.h') diff --git a/src/repository.h b/src/repository.h index 590ef0e..e07d184 100644 --- a/src/repository.h +++ b/src/repository.h @@ -49,7 +49,6 @@ public: virtual void restoreLog() = 0; virtual ~Repository() {} - virtual void reloadBranches() = 0; virtual int createBranch(const QString &branch, int revnum, const QString &branchFrom, int revFrom) = 0; virtual int deleteBranch(const QString &branch, int revnum) = 0; -- cgit v1.2.1