From: David Mitchell Date: Sat, 3 Jan 2009 13:51:28 +0000 (+0000) Subject: some more Porting/ script documentation X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a7d002a11216fa10d2d93aff87fec9eea46a32ff;p=p5sagit%2Fp5-mst-13.2.git some more Porting/ script documentation --- diff --git a/Porting/git-find-p4-change b/Porting/git-find-p4-change index b777953..ba1a0b7 100755 --- a/Porting/git-find-p4-change +++ b/Porting/git-find-p4-change @@ -1,5 +1,7 @@ #!/usr/bin/perl +# given a perforce change number, output the equivalent git commit id + die "usage: $0 [git-log-options] num" unless @ARGV; my $num = 1; diff --git a/Porting/manicheck b/Porting/manicheck index 0439292..9fff861 100644 --- a/Porting/manicheck +++ b/Porting/manicheck @@ -1,5 +1,9 @@ #!/usr/bin/perl +# output a list of: +# a) files listed in MANIFEST which don't exist +# b) files which exist but which aren't in MANIFEST + use strict; use warnings; use File::Find;