From c73eba077a0acf3e8e4586e579898f1996232e9f Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 18 Oct 2015 10:14:39 +0300 Subject: Add review-patches --- debian/changelog | 6 ++++++ scripts/review-patches | 15 +++++++++++++++ 2 files changed, 21 insertions(+) create mode 100755 scripts/review-patches diff --git a/debian/changelog b/debian/changelog index 242a5eb..3b2cc2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +liw-automation (8.30-1) unstable; urgency=medium + + * Add review-patches. + + -- Lars Wirzenius Sun, 18 Oct 2015 10:14:26 +0300 + liw-automation (8.29-1) unstable; urgency=low * New release just to bump version numbers diff --git a/scripts/review-patches b/scripts/review-patches new file mode 100755 index 0000000..5bb9f89 --- /dev/null +++ b/scripts/review-patches @@ -0,0 +1,15 @@ +#!/bin/sh + +set -eu + +tempdir="$(mktemp -d)" + +cleanup() +{ + rm -rf "$tempdir" +} + +trap cleanup EXIT + +git format-patch -o "$tempdir" master +less -S "$tempdir"/*.patch -- cgit v1.2.1