| ... | @@ -303,7 +303,7 @@ pub fn getTreeDiff(alloc: std.mem.Allocator, dir: std.fs.Dir, commitid: CommitId | ... | @@ -303,7 +303,7 @@ pub fn getTreeDiff(alloc: std.mem.Allocator, dir: std.fs.Dir, commitid: CommitId |
| 303 | const result = try std.ChildProcess.exec(.{ | 303 | const result = try std.ChildProcess.exec(.{ |
| 304 | .allocator = alloc, | 304 | .allocator = alloc, |
| 305 | .cwd_dir = dir, | 305 | .cwd_dir = dir, |
| 306 | .argv = &.{ "git", "diff-tree", "-p", "--raw", commitid.id, parentid.id }, | 306 | .argv = &.{ "git", "diff-tree", "-p", "--raw", parentid.id, commitid.id }, |
| 307 | .max_output_bytes = 1024 * 1024 * 1024, | 307 | .max_output_bytes = 1024 * 1024 * 1024, |
| 308 | }); | 308 | }); |
| 309 | return std.mem.trim(u8, result.stdout, "\n"); | 309 | return std.mem.trim(u8, result.stdout, "\n"); |