File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -170,14 +170,11 @@ _list_encrypted_files() {
170170 local strict_context=${1:- }
171171
172172 IFS=$' \n '
173- # List files with -z option to disable quoting of filenames, then
174- # immediately convert NUL-delimited filenames to be newline-delimited to be
175- # compatibility with bash variables
176- # List files with -z option to disable quoting of filenames,
177- # then filter for files marked for encryption (git check-attr + grep),
178- # then only keep filenames (sed)
179- # then evaluate escaped characters like double-quotes, backslash and control characters (eval)
180- # which are part of the output regardless of core.quotePath=false as per
173+ # List files with -z option to disable quoting of filenames, then filter
174+ # for files marked for encryption (git check-attr + grep), then only keep
175+ # filenames (sed) then evaluate escaped characters like double-quotes,
176+ # backslash and control characters (eval) which are part of the output
177+ # regardless of core.quotePath=false as per
181178 # https://git-scm.com/docs/git-config#Documentation/git-config.txt-corequotePath
182179 git -c core.quotePath=false ls-files -z | tr ' \0' ' \n' |
183180 git -c core.quotePath=false check-attr filter --stdin 2> /dev/null |
You can’t perform that action at this time.
0 commit comments