Skip to content

Commit 01a10b0

Browse files
pcloudsgitster
authored andcommitted
rerere: convert to use parse_pathspec
Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 15b55ae commit 01a10b0

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

builtin/rerere.c

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "rerere.h"
77
#include "xdiff/xdiff.h"
88
#include "xdiff-interface.h"
9+
#include "pathspec.h"
910

1011
static const char * const rerere_usage[] = {
1112
N_("git rerere [clear | forget path... | status | remaining | diff | gc]"),
@@ -68,11 +69,12 @@ int cmd_rerere(int argc, const char **argv, const char *prefix)
6869
return rerere(flags);
6970

7071
if (!strcmp(argv[0], "forget")) {
71-
const char **pathspec;
72+
struct pathspec pathspec;
7273
if (argc < 2)
7374
warning("'git rerere forget' without paths is deprecated");
74-
pathspec = get_pathspec(prefix, argv + 1);
75-
return rerere_forget(pathspec);
75+
parse_pathspec(&pathspec, 0, PATHSPEC_PREFER_CWD,
76+
prefix, argv + 1);
77+
return rerere_forget(&pathspec);
7678
}
7779

7880
fd = setup_rerere(&merge_rr, flags);

rerere.c

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "resolve-undo.h"
77
#include "ll-merge.h"
88
#include "attr.h"
9+
#include "pathspec.h"
910

1011
#define RESOLVED 0
1112
#define PUNTED 1
@@ -656,7 +657,7 @@ static int rerere_forget_one_path(const char *path, struct string_list *rr)
656657
return 0;
657658
}
658659

659-
int rerere_forget(const char **pathspec)
660+
int rerere_forget(struct pathspec *pathspec)
660661
{
661662
int i, fd;
662663
struct string_list conflict = STRING_LIST_INIT_DUP;
@@ -667,12 +668,12 @@ int rerere_forget(const char **pathspec)
667668

668669
fd = setup_rerere(&merge_rr, RERERE_NOAUTOUPDATE);
669670

670-
unmerge_cache(pathspec);
671+
unmerge_cache(pathspec->raw);
671672
find_conflict(&conflict);
672673
for (i = 0; i < conflict.nr; i++) {
673674
struct string_list_item *it = &conflict.items[i];
674-
if (!match_pathspec(pathspec, it->string, strlen(it->string),
675-
0, NULL))
675+
if (!match_pathspec_depth(pathspec, it->string, strlen(it->string),
676+
0, NULL))
676677
continue;
677678
rerere_forget_one_path(it->string, &merge_rr);
678679
}

rerere.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
#include "string-list.h"
55

6+
struct pathspec;
7+
68
#define RERERE_AUTOUPDATE 01
79
#define RERERE_NOAUTOUPDATE 02
810

@@ -16,7 +18,7 @@ extern void *RERERE_RESOLVED;
1618
extern int setup_rerere(struct string_list *, int);
1719
extern int rerere(int);
1820
extern const char *rerere_path(const char *hex, const char *file);
19-
extern int rerere_forget(const char **);
21+
extern int rerere_forget(struct pathspec *);
2022
extern int rerere_remaining(struct string_list *);
2123
extern void rerere_clear(struct string_list *);
2224
extern void rerere_gc(struct string_list *);

0 commit comments

Comments
 (0)