| ... | ... | @@ -303,7 +303,7 @@ pub fn getTreeDiff(alloc: std.mem.Allocator, dir: std.fs.Dir, commitid: CommitId |
| 303 | 303 | const result = try std.ChildProcess.exec(.{ |
| 304 | 304 | .allocator = alloc, |
| 305 | 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 | 307 | .max_output_bytes = 1024 * 1024 * 1024, |
| 308 | 308 | }); |
| 309 | 309 | return std.mem.trim(u8, result.stdout, "\n"); |