https://github.com/git/git
Revision 4b441f47cefe7f4861167a151a395606e1a16745 authored by Junio C Hamano on 07 January 2007, 10:17:52 UTC, committed by Junio C Hamano on 08 January 2007, 05:36:35 UTC
Sometimes, people have only fetch access into a bare repository
that is used as a back-up location (or a distribution point) but
does not have a push access for networking reasons, e.g. one end
being behind a firewall, and updating the "current branch" in
such a case is perfectly fine.

This allows such a fetch without --update-head-ok, which is a
flag that should never be used by end users otherwise.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 7d1864c
Raw File
Tip revision: 4b441f47cefe7f4861167a151a395606e1a16745 authored by Junio C Hamano on 07 January 2007, 10:17:52 UTC
git-fetch: allow updating the current branch in a bare repository.
Tip revision: 4b441f4
blob.h
#ifndef BLOB_H
#define BLOB_H

#include "object.h"

extern const char *blob_type;

struct blob {
	struct object object;
};

struct blob *lookup_blob(const unsigned char *sha1);

int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size);

int parse_blob(struct blob *item);

#endif /* BLOB_H */
back to top