]> git.ipfire.org Git - thirdparty/git.git/commit - pathspec.c
pathspec: warn on empty strings as pathspec
authorEmily Xie <emilyxxie@gmail.com>
Wed, 22 Jun 2016 23:00:24 +0000 (19:00 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Jun 2016 23:13:23 +0000 (16:13 -0700)
commitd426430e6ec2a05bf0a4ee88c319dd6072908504
tree80d8455808ba0b5649d08c1330bd1e5485ba4670
parent05219a1276341e72d8082d76b7f5ed394b7437a4
pathspec: warn on empty strings as pathspec

An empty string as a pathspec element matches all paths.  A buggy
script, however, could accidentally assign an empty string to a
variable that then gets passed to a Git command invocation, e.g.:

path=... compute a path to be removed in $path ...
        git rm -r "$paht"

which would unintentionally remove all paths in the current
directory.

The fix for this issue requires a two-step approach. As there may be
existing scripts that knowingly use empty strings in this manner,
the first step simply gives a warning that (1) tells that an empty
string will become an invalid pathspec element and (2) asks the user
to use "." if they mean to match all.

For step two, a follow-up patch several release cycles later will
remove the warning and throw an error instead.

This patch is the first step.

Signed-off-by: Emily Xie <emilyxxie@gmail.com>
Reported-by: David Turner <novalis@novalis.org>
Mentored-by: Michail Denchev <mdenchev@gmail.com>
Thanks-to: Sarah Sharp <sarah@thesharps.us> and James Sharp <jamey@minilop.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
pathspec.c
t/t3600-rm.sh
t/t3700-add.sh