diff options
author | Raja R Harinath <harinath@hurrynot.org> | 2010-07-22 18:32:21 +0530 |
---|---|---|
committer | Raja R Harinath <harinath@hurrynot.org> | 2010-07-22 18:32:21 +0530 |
commit | 008b28e0f4c48de8d740c51c053020d1a36315bf (patch) | |
tree | 6acd61c923518b0f9af289f1ad81e8bf6deeb463 /src/ruleparser.h | |
parent | f0b31cfe9d31421b83507316d1274d191336a1f7 (diff) | |
download | svn2git-008b28e0f4c48de8d740c51c053020d1a36315bf.tar svn2git-008b28e0f4c48de8d740c51c053020d1a36315bf.tar.gz svn2git-008b28e0f4c48de8d740c51c053020d1a36315bf.tar.bz2 svn2git-008b28e0f4c48de8d740c51c053020d1a36315bf.tar.xz svn2git-008b28e0f4c48de8d740c51c053020d1a36315bf.zip |
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/".
Diffstat (limited to 'src/ruleparser.h')
-rw-r--r-- | src/ruleparser.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ruleparser.h b/src/ruleparser.h index 8d0fcb2..95a508f 100644 --- a/src/ruleparser.h +++ b/src/ruleparser.h @@ -36,6 +36,9 @@ public: QList<Branch> branches; int lineNumber; + QString forwardTo; + QString prefix; + Repository() : lineNumber(0) { } }; |