git/builtin/commit-tree.c

/*
 * GIT - The information manager from hell
 *
 * Copyright (C) Linus Torvalds, 2005
 */
#define USE_THE_REPOSITORY_VARIABLE
#include "builtin.h"
#include "config.h"
#include "gettext.h"
#include "hex.h"
#include "object-name.h"
#include "object-store-ll.h"

#include "commit.h"
#include "parse-options.h"

static const char * const commit_tree_usage[] =;

static const char *sign_commit;

static void new_parent(struct commit *parent, struct commit_list **parents_p)
{}

static int parse_parent_arg_callback(const struct option *opt,
		const char *arg, int unset)
{}

static int parse_message_arg_callback(const struct option *opt,
		const char *arg, int unset)
{}

static int parse_file_arg_callback(const struct option *opt,
		const char *arg, int unset)
{}

int cmd_commit_tree(int argc,
		    const char **argv,
		    const char *prefix,
		    struct repository *repo UNUSED)
{}