You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -236,11 +236,16 @@ Depending on your use case, you may want to determine the point where the branch
236
236
237
237
Default: `git diff --name-only HEAD~1`
238
238
239
+
The diff command must produce **newline-delimited output** with one file path per line. This is the format that `git diff --name-only` produces by default. Newline-delimited output is required for filenames containing spaces to be parsed correctly.
240
+
241
+
Custom diff scripts should follow the same convention — print one path per line to standard output.
0 commit comments