remote-curl: refactor smart-http discovery
[gitweb.git] / builtin / add.c
index 12247b48fd42d4a4b6955ff997fdf51a8785f9ae..d461ba08b9b2663b4cadd9a1cb756523ffe8eb1f 100644 (file)
@@ -239,7 +239,7 @@ static int edit_patch(int argc, const char **argv, const char *prefix)
        rev.diffopt.output_format = DIFF_FORMAT_PATCH;
        rev.diffopt.use_color = 0;
        rev.diffopt.flags.ignore_dirty_submodules = 1;
-       out = open(file, O_CREAT | O_WRONLY, 0666);
+       out = open(file, O_CREAT | O_WRONLY | O_TRUNC, 0666);
        if (out < 0)
                die(_("Could not open '%s' for writing."), file);
        rev.diffopt.file = xfdopen(out, "w");