Skip to content

Instantly share code, notes, and snippets.

@thomascube
thomascube / Makefile
Last active October 29, 2017 15:47
Roundcube release scripts
GITREMOTE=git://github.com/roundcube/roundcubemail.git
GITBRANCH=release-1.3
GPGKEY=devs@roundcube.net
VERSION=1.3.2
all: clean complete dependent framework
complete: roundcubemail-git toolchain
cp -RH roundcubemail-git roundcubemail-$(VERSION)
(cd roundcubemail-$(VERSION); cp composer.json-dist composer.json)
@thomascube
thomascube / git-svn-create-rev-map.php
Created May 13, 2012 16:43
Script to generate a revision mapping table from two SVN and GIT log files
<?php
/**
* This script builds a revision mapping table from two SVN and GIT log files.
* It uses a commit's date and comment to connect SVN revisions with a GIT commits.
*
* Execute it with php git-svn-create-rev-map.php svn.log git.log
*
* @author Thomas Bruederli <thomas(at)roundcube(dot)net>
**/