Git import and export (#1507)

* create git bundle command

* create git unbundle command

* Apply suggestions from code review

Co-authored-by: René Pfeuffer <rene.pfeuffer@cloudogu.com>
This commit is contained in:
Eduard Heimbuch
2021-01-28 12:35:18 +01:00
committed by GitHub
parent 734ab40d7e
commit 0046c78b40
11 changed files with 489 additions and 57 deletions

View File

@@ -51,6 +51,8 @@ public class SvnBundleCommand extends AbstractSvnCommand
implements BundleCommand
{
private static final String DUMP = "dump";
public SvnBundleCommand(SvnContext context)
{
super(context);
@@ -103,4 +105,9 @@ public class SvnBundleCommand extends AbstractSvnCommand
return response;
}
@Override
public String getFileExtension() {
return DUMP;
}
}