Skip to content

Commit 6bf8300

Browse files
committed
reset: support the experimental --stdin option
Just like with other Git commands, this option makes it read the paths from the standard input. It comes in handy when resetting many, many paths at once and wildcards are not an option (e.g. when the paths are generated by a tool). Note: we first parse the entire list and perform the actual reset action only in a second phase. Not only does this make things simpler, it also helps performance, as do_diff_cache() traverses the index and the (sorted) pathspecs in simultaneously to avoid unnecessary lookups. This feature is marked experimental because it is still under review in the upstream Git project. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 591eb97 commit 6bf8300

File tree

3 files changed

+94
-1
lines changed

3 files changed

+94
-1
lines changed

Documentation/git-reset.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ SYNOPSIS
1010
[verse]
1111
'git reset' [-q] [<tree-ish>] [--] <paths>...
1212
'git reset' (--patch | -p) [<tree-ish>] [--] [<paths>...]
13+
EXPERIMENTAL: 'git reset' [-q] [--stdin [-z]] [<tree-ish>]
1314
'git reset' [--soft | --mixed [-N] | --hard | --merge | --keep] [-q] [<commit>]
1415

1516
DESCRIPTION
@@ -97,6 +98,15 @@ OPTIONS
9798
--quiet::
9899
Be quiet, only report errors.
99100

101+
--stdin::
102+
EXPERIMENTAL: Instead of taking list of paths from the
103+
command line, read list of paths from the standard input.
104+
Paths are separated by LF (i.e. one path per line) by
105+
default.
106+
107+
-z::
108+
EXPERIMENTAL: Only meaningful with `--stdin`; paths are
109+
separated with NUL character instead of LF.
100110

101111
EXAMPLES
102112
--------

builtin/reset.c

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@
2424
#include "cache-tree.h"
2525
#include "submodule.h"
2626
#include "submodule-config.h"
27+
#include "strbuf.h"
28+
#include "quote.h"
2729

2830
static const char * const git_reset_usage[] = {
2931
N_("git reset [--mixed | --soft | --hard | --merge | --keep] [-q] [<commit>]"),
3032
N_("git reset [-q] [<tree-ish>] [--] <paths>..."),
33+
N_("EXPERIMENTAL: git reset [-q] [--stdin [-z]] [<tree-ish>]"),
3134
N_("git reset --patch [<tree-ish>] [--] [<paths>...]"),
3235
NULL
3336
};
@@ -277,7 +280,9 @@ static int git_reset_config(const char *var, const char *value, void *cb)
277280
int cmd_reset(int argc, const char **argv, const char *prefix)
278281
{
279282
int reset_type = NONE, update_ref_status = 0, quiet = 0;
280-
int patch_mode = 0, unborn;
283+
int patch_mode = 0, nul_term_line = 0, read_from_stdin = 0, unborn;
284+
char **stdin_paths = NULL;
285+
int stdin_nr = 0, stdin_alloc = 0;
281286
const char *rev;
282287
struct object_id oid;
283288
struct pathspec pathspec;
@@ -299,6 +304,10 @@ int cmd_reset(int argc, const char **argv, const char *prefix)
299304
OPT_BOOL('p', "patch", &patch_mode, N_("select hunks interactively")),
300305
OPT_BOOL('N', "intent-to-add", &intent_to_add,
301306
N_("record only the fact that removed paths will be added later")),
307+
OPT_BOOL('z', NULL, &nul_term_line,
308+
N_("EXPERIMENTAL: paths are separated with NUL character")),
309+
OPT_BOOL(0, "stdin", &read_from_stdin,
310+
N_("EXPERIMENTAL: read paths from <stdin>")),
302311
OPT_END()
303312
};
304313

@@ -310,6 +319,42 @@ int cmd_reset(int argc, const char **argv, const char *prefix)
310319

311320
load_submodule_cache();
312321

322+
if (read_from_stdin) {
323+
strbuf_getline_fn getline_fn = nul_term_line ?
324+
strbuf_getline_nul : strbuf_getline_lf;
325+
int flags = PATHSPEC_PREFER_FULL;
326+
struct strbuf buf = STRBUF_INIT;
327+
struct strbuf unquoted = STRBUF_INIT;
328+
329+
if (patch_mode)
330+
die(_("--stdin is incompatible with --patch"));
331+
332+
if (pathspec.nr)
333+
die(_("--stdin is incompatible with path arguments"));
334+
335+
while (getline_fn(&buf, stdin) != EOF) {
336+
if (!nul_term_line && buf.buf[0] == '"') {
337+
strbuf_reset(&unquoted);
338+
if (unquote_c_style(&unquoted, buf.buf, NULL))
339+
die(_("line is badly quoted"));
340+
strbuf_swap(&buf, &unquoted);
341+
}
342+
ALLOC_GROW(stdin_paths, stdin_nr + 1, stdin_alloc);
343+
stdin_paths[stdin_nr++] = xstrdup(buf.buf);
344+
strbuf_reset(&buf);
345+
}
346+
strbuf_release(&unquoted);
347+
strbuf_release(&buf);
348+
349+
ALLOC_GROW(stdin_paths, stdin_nr + 1, stdin_alloc);
350+
stdin_paths[stdin_nr++] = NULL;
351+
flags |= PATHSPEC_LITERAL_PATH;
352+
parse_pathspec(&pathspec, 0, flags, prefix,
353+
(const char **)stdin_paths);
354+
355+
} else if (nul_term_line)
356+
die(_("-z requires --stdin"));
357+
313358
unborn = !strcmp(rev, "HEAD") && get_sha1("HEAD", oid.hash);
314359
if (unborn) {
315360
/* reset on unborn branch: treat as reset to empty tree */
@@ -400,5 +445,11 @@ int cmd_reset(int argc, const char **argv, const char *prefix)
400445
if (!pathspec.nr)
401446
remove_branch_state();
402447

448+
if (stdin_paths) {
449+
while (stdin_nr)
450+
free(stdin_paths[--stdin_nr]);
451+
free(stdin_paths);
452+
}
453+
403454
return update_ref_status;
404455
}

t/t7108-reset-stdin.sh

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/bin/sh
2+
3+
test_description='reset --stdin'
4+
5+
. ./test-lib.sh
6+
7+
test_expect_success 'reset --stdin' '
8+
test_commit hello &&
9+
git rm hello.t &&
10+
test -z "$(git ls-files hello.t)" &&
11+
echo hello.t | git reset --stdin &&
12+
test hello.t = "$(git ls-files hello.t)"
13+
'
14+
15+
test_expect_success 'reset --stdin -z' '
16+
test_commit world &&
17+
git rm hello.t world.t &&
18+
test -z "$(git ls-files hello.t world.t)" &&
19+
printf world.tQworld.tQhello.tQ | q_to_nul | git reset --stdin -z &&
20+
printf "hello.t\nworld.t\n" >expect &&
21+
git ls-files >actual &&
22+
test_cmp expect actual
23+
'
24+
25+
test_expect_success '--stdin requires --mixed' '
26+
echo hello.t >list &&
27+
test_must_fail git reset --soft --stdin <list &&
28+
test_must_fail git reset --hard --stdin <list &&
29+
git reset --mixed --stdin <list
30+
'
31+
32+
test_done

0 commit comments

Comments
 (0)