]> git.parisson.com Git - telemeta.git/commitdiff
more tools
authoryomguy <yomguy@parisson.com>
Tue, 7 Feb 2012 00:45:41 +0000 (01:45 +0100)
committeryomguy <yomguy@parisson.com>
Tue, 7 Feb 2012 00:45:41 +0000 (01:45 +0100)
tools/dev/fix_svn_authors.sh [new file with mode: 0755]
tools/dev/make_doc.sh [new file with mode: 0755]

diff --git a/tools/dev/fix_svn_authors.sh b/tools/dev/fix_svn_authors.sh
new file mode 100755 (executable)
index 0000000..2f47a97
--- /dev/null
@@ -0,0 +1,12 @@
+
+git filter-branch -f --commit-filter '
+        if [ "$GIT_COMMITTER_EMAIL" = "<>" ];
+        then
+                GIT_COMMITTER_NAME="<yomguy>";
+                GIT_AUTHOR_NAME="<yomguy>";
+                GIT_COMMITTER_EMAIL="<yomguy@parisson.com>";
+                GIT_AUTHOR_EMAIL="<yomguy@parisson.com>";
+                git commit-tree "$@";
+        else
+                git commit-tree "$@";
+        fi' HEAD
diff --git a/tools/dev/make_doc.sh b/tools/dev/make_doc.sh
new file mode 100755 (executable)
index 0000000..1fbd24e
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/sh
+# needs epydoc
+
+epydoc -n telemeta -u http://telemeta.org -o doc/html/ telemeta/
+