Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

git2cl(1) [debian man page]

GIT2CL(1)						      General Commands Manual							 GIT2CL(1)

NAME
git2cl - tool to convert git logs to GNU ChangeLog DESCRIPTION
This is a quick'n'dirty tool to convert git logs to GNU ChangeLog format. The tool invokes git log internally unless you pipe a log to it. Thus, typically you would use it as follows: SYNOPSIS
git2cl > ChangeLog If you don't want git2cl to invoke git log internally, you can use it as a pipe. It needs a git log generated with --pretty --numstat and --summary. You can use it as follows: git log --pretty --numstat --summary | git2cl > ChangeLog SEE ALSO
README in /usr/share/doc/git2cl. Output format specification: <http://www.gnu.org/prep/standards/html_node/Change-Logs.html> AUTHORS
git2cl is developed by Simon Josefsson <simon@josefsson.org> and Luis Mondesi <lemsx1@gmail.com> This man page was written by Dmitry Smirnov <onlyjob@member.fsf.org> for Debian GNU/Linux (but may be used by others). git2cl November 2011 GIT2CL(1)

Check Out this Related Man Page

GIT-WHATCHANGED(1)                                                  Git Manual                                                  GIT-WHATCHANGED(1)

NAME
git-whatchanged - Show logs with difference each commit introduces SYNOPSIS
git whatchanged <option>... DESCRIPTION
Shows commit logs and diff output each commit introduces. New users are encouraged to use git-log(1) instead. The whatchanged command is essentially the same as git-log(1) but defaults to show the raw format diff output and to skip merges. The command is kept primarily for historical reasons; fingers of many people who learned Git long before git log was invented by reading Linux kernel mailing list are trained to type it. EXAMPLES
git whatchanged -p v2.6.12.. include/scsi drivers/scsi Show as patches the commits since version v2.6.12 that changed any file in the include/scsi or drivers/scsi subdirectories git whatchanged --since="2 weeks ago" -- gitk Show the changes during the last two weeks to the file gitk. The "--" is necessary to avoid confusion with the branch named gitk GIT
Part of the git(1) suite Git 2.17.1 10/05/2018 GIT-WHATCHANGED(1)
Man Page