aboutsummaryrefslogtreecommitdiff
path: root/tools/git2cl/README
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2021-10-13 10:40:07 -0700
committerTim Newsome <tim@sifive.com>2021-10-13 10:40:07 -0700
commit25ae41c2d2a33db3b8e40fd290934e34f27cfc4e (patch)
tree94892480b4db39f83f02aa0b25a9ff8155bfaec9 /tools/git2cl/README
parent950e5d414fc610a95b9bf882ef47c1409ca4d188 (diff)
downloadriscv-openocd-25ae41c2d2a33db3b8e40fd290934e34f27cfc4e.zip
riscv-openocd-25ae41c2d2a33db3b8e40fd290934e34f27cfc4e.tar.gz
riscv-openocd-25ae41c2d2a33db3b8e40fd290934e34f27cfc4e.tar.bz2
Remove files.
Change-Id: Iab0cc4c192052b79048becf1155f173fa4b17f3e
Diffstat (limited to 'tools/git2cl/README')
-rw-r--r--tools/git2cl/README45
1 files changed, 0 insertions, 45 deletions
diff --git a/tools/git2cl/README b/tools/git2cl/README
deleted file mode 100644
index 4084080..0000000
--- a/tools/git2cl/README
+++ /dev/null
@@ -1,45 +0,0 @@
-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:
-
-link:http://www.gnu.org/prep/standards/html_node/Change-Logs.html[]
-
-My inspiration for writing this tool was the
-link:http://www.red-bean.com/cvs2cl/[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:
-link:http://josefsson.org/git2cl/[] and its repository can be found at
-link:http://repo.or.cz/w/git2cl.git[].
-
-Credits
--------
-
-Luis Mondesi contributed several improvements.
-
-Support
--------
-
-Try talking to mailto:simon@josefsson.org[Simon Josefsson].