Skip to content

Commit d8b0675

Browse files
committed
fast-import: use new options parsing
1 parent 41688c1 commit d8b0675

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

builtin/fast-import.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "commit.h"
1515
#include "delta.h"
1616
#include "pack.h"
17+
#include "parse-options.h"
1718
#include "path.h"
1819
#include "read-cache-ll.h"
1920
#include "refs.h"
@@ -3871,6 +3872,10 @@ int cmd_fast_import(int argc,
38713872
struct repository *repo)
38723873
{
38733874
unsigned int i;
3875+
struct option options[] = {
3876+
OPT_BOOL(0, "relative-marks", &relative_marks_paths, N_("foobar")),
3877+
OPT_END()
3878+
};
38743879

38753880
show_usage_if_asked(argc, argv, fast_import_usage);
38763881

0 commit comments

Comments
 (0)