Skip to content

Commit

Permalink
Merge pull request #68 send-pack do not check for sha1 file when GVFS…
Browse files Browse the repository at this point in the history
…_MISSING_OK set

send-pack: do not check for sha1 file when GVFS_MISSING_OK set
  • Loading branch information
Kevin Willford authored and dscho committed Jun 8, 2019
2 parents 86222df + 634c47f commit 3c3305c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion send-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include "sha1-array.h"
#include "gpg-interface.h"
#include "cache.h"
#include "gvfs.h"

int option_parse_push_signed(const struct option *opt,
const char *arg, int unset)
Expand All @@ -40,7 +41,7 @@ int option_parse_push_signed(const struct option *opt,

static void feed_object(const struct object_id *oid, FILE *fh, int negative)
{
if (negative && !has_object_file(oid))
if (negative && !gvfs_config_is_set(GVFS_MISSING_OK) && !has_object_file(oid))
return;

if (negative)
Expand Down

0 comments on commit 3c3305c

Please sign in to comment.