https://github.com/git/git
Revision faaafcd3f446874b4f6bf7bf5b4e2ee7101b2a82 authored by Han-Wen Nienhuys on 27 February 2020, 18:04:20 UTC, committed by Han-Wen Nienhuys on 27 February 2020, 18:04:20 UTC
"refs/" name space.

This happens implicitly in the files/packed ref backend; making it
explicit will simplify adding alternate ref storage backends.

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
1 parent 51ebf55
Raw File
Tip revision: faaafcd3f446874b4f6bf7bf5b4e2ee7101b2a82 authored by Han-Wen Nienhuys on 27 February 2020, 18:04:20 UTC
Codify that for_each_rawref / for_each_ref should iterate over the
Tip revision: faaafcd
bulk-checkin.h
/*
 * Copyright (c) 2011, Google Inc.
 */
#ifndef BULK_CHECKIN_H
#define BULK_CHECKIN_H

#include "cache.h"

int index_bulk_checkin(struct object_id *oid,
		       int fd, size_t size, enum object_type type,
		       const char *path, unsigned flags);

void plug_bulk_checkin(void);
void unplug_bulk_checkin(void);

#endif
back to top