Staging
v0.8.1
https://github.com/git/git
Revision 9da6f0fff2d6ab4bfad36099b53c911bc498fc2e authored by SZEDER Gábor on 02 September 2008, 01:35:24 UTC, committed by Junio C Hamano on 02 September 2008, 05:01:33 UTC
Asciidoc removes lines starting with a dot when creating manpages.
Since those lines were comments in use case examples showing shell
commands, preceed those lines with a hash sign.

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent d4040e0
Raw File
Tip revision: 9da6f0fff2d6ab4bfad36099b53c911bc498fc2e authored by SZEDER Gábor on 02 September 2008, 01:35:24 UTC
Documentation: fix disappeared lines in 'git stash' manpage
Tip revision: 9da6f0f
shortlog.h
#ifndef SHORTLOG_H
#define SHORTLOG_H

#include "string-list.h"

struct shortlog {
	struct string_list list;
	int summary;
	int wrap_lines;
	int sort_by_number;
	int wrap;
	int in1;
	int in2;
	int user_format;

	char *common_repo_prefix;
	int email;
	struct string_list mailmap;
};

void shortlog_init(struct shortlog *log);

void shortlog_add_commit(struct shortlog *log, struct commit *commit);

void shortlog_output(struct shortlog *log);

#endif
back to top