Skip to content

Commit ef9c133

Browse files
Kevin Willfordderrickstolee
Kevin Willford
authored andcommitted
send-pack: do not check for sha1 file when GVFS_MISSING_OK set
1 parent f3adf1e commit ef9c133

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

send-pack.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "sha1-array.h"
1616
#include "gpg-interface.h"
1717
#include "cache.h"
18+
#include "gvfs.h"
1819

1920
int option_parse_push_signed(const struct option *opt,
2021
const char *arg, int unset)
@@ -50,7 +51,7 @@ static int send_pack_config(const char *var, const char *value, void *unused)
5051

5152
static void feed_object(const struct object_id *oid, FILE *fh, int negative)
5253
{
53-
if (negative &&
54+
if (negative && !gvfs_config_is_set(GVFS_MISSING_OK) &&
5455
!has_object_file_with_flags(oid,
5556
OBJECT_INFO_SKIP_FETCH_OBJECT |
5657
OBJECT_INFO_QUICK))

0 commit comments

Comments
 (0)