Staging
v0.5.1
https://github.com/git/git
Revision 7abd7117ec57b8c3c2a469db62c7811fdac5c655 authored by Jon Loeliger on 04 May 2006, 04:19:54 UTC, committed by Junio C Hamano on 04 May 2006, 05:59:30 UTC
Clean up a few entries and fix typos.

    bare repository
    cherry-picking
    hook
    topic branch

[jc: removing questionable "symbolic ref -- see 'ref'" for now.]

Signed-off-by: Jon Loeliger <jdl@jdl.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 9290cd5
Raw File
Tip revision: 7abd7117ec57b8c3c2a469db62c7811fdac5c655 authored by Jon Loeliger on 04 May 2006, 04:19:54 UTC
Add a few more words to the glossary.
Tip revision: 7abd711
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