Sha256: 821f5f91c46013484fd0f13d302d94a9a85d3c0c9399fd1c97899cc945c5c9f2

Contents?: true

Size: 694 Bytes

Versions: 53

Compression:

Stored size: 694 Bytes

Contents

/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
#ifndef INCLUDE_note_h__
#define INCLUDE_note_h__

#include "common.h"

#include "git2/oid.h"
#include "git2/types.h"

#define GIT_NOTES_DEFAULT_REF "refs/notes/commits"

#define GIT_NOTES_DEFAULT_MSG_ADD \
	"Notes added by 'git_note_create' from libgit2"

#define GIT_NOTES_DEFAULT_MSG_RM \
	"Notes removed by 'git_note_remove' from libgit2"

struct git_note {
	git_oid id;

	git_signature *author;
	git_signature *committer;

	char *message;
};

#endif /* INCLUDE_notes_h__ */

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
rugged-0.26.7 vendor/libgit2/src/notes.h
rugged-0.26.6 vendor/libgit2/src/notes.h
rugged-0.26.3 vendor/libgit2/src/notes.h
rugged-0.26.0 vendor/libgit2/src/notes.h
rugged-0.26.0b5 vendor/libgit2/src/notes.h
rugged-0.26.0b4 vendor/libgit2/src/notes.h
rugged-0.26.0b3 vendor/libgit2/src/notes.h
rugged-0.26.0b2 vendor/libgit2/src/notes.h
rugged-0.26.0b1 vendor/libgit2/src/notes.h
rugged-0.25.1.1 vendor/libgit2/src/notes.h
rugged-0.24.6.1 vendor/libgit2/src/notes.h
rugged-0.25.1 vendor/libgit2/src/notes.h
rugged-0.24.5 vendor/libgit2/src/notes.h
rugged-0.25.0 vendor/libgit2/src/notes.h
rugged-0.25.0b10 vendor/libgit2/src/notes.h
rugged-0.25.0b9 vendor/libgit2/src/notes.h
rugged-0.25.0b8 vendor/libgit2/src/notes.h
rugged-0.25.0b7 vendor/libgit2/src/notes.h
rugged-0.25.0b6 vendor/libgit2/src/notes.h
rugged-0.25.0b5 vendor/libgit2/src/notes.h