Skip to content

Commit f2bf0e3

Browse files
committed
Remove repeated lines in comments
1 parent f18c4a4 commit f2bf0e3

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

transcrypt

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff 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 |

0 commit comments

Comments
 (0)