From b3ddfc70e850fdc58c3a7b5a823b2129c111e7e7 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Wed, 29 Aug 2018 16:03:38 -0700 Subject: Flatten git2cl submodule --- tools/git2cl | 1 - tools/git2cl/README.html | 392 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 392 insertions(+), 1 deletion(-) delete mode 160000 tools/git2cl create mode 100644 tools/git2cl/README.html (limited to 'tools/git2cl/README.html') diff --git a/tools/git2cl b/tools/git2cl deleted file mode 160000 index 8373c9f..0000000 --- a/tools/git2cl +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8373c9f74993e218a08819cbcdbab3f3564bbeba diff --git a/tools/git2cl/README.html b/tools/git2cl/README.html new file mode 100644 index 0000000..f82da5d --- /dev/null +++ b/tools/git2cl/README.html @@ -0,0 +1,392 @@ + + + + + + +git2cl + + + +
+
+

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:

+
+
+
jas@mocca:~/src/libtasn1$ git2cl > ChangeLog
+jas@mocca:~/src/libtasn1$
+
+

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:

+
+
+
jas@mocca:~/src/libtasn1$ git log --pretty --numstat --summary | ~/src/git2cl/git2cl > ChangeLog
+jas@mocca:~/src/libtasn1$
+
+

The output format is specified by:

+ +

My inspiration for writing this tool was the +cvs2cl tool, which I have been +using in several projects. Replacing it was necessary to seriously +consider switching from CVS to GIT for my projects.

+

The canonical home page for git2cl is: +http://josefsson.org/git2cl/ and its repository can be found at +http://repo.or.cz/w/git2cl.git.

+
+
+

Credits

+
+

Luis Mondesi contributed several improvements.

+
+

Support

+
+

Try talking to Simon Josefsson.

+
+ + + -- cgit v1.1