mailr25915 - /trunk/docs/devel/find_missing_copyrights


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on September 19, 2014 - 11:33:
Author: bugman
Date: Fri Sep 19 11:33:11 2014
New Revision: 25915

URL: http://svn.gna.org/viewcvs/relax?rev=25915&view=rev
Log:
Updated the find_missing_copyrights document.

The matching is now more precise and skips all svnmerge operations.


Modified:
    trunk/docs/devel/find_missing_copyrights

Modified: trunk/docs/devel/find_missing_copyrights
URL: 
http://svn.gna.org/viewcvs/relax/trunk/docs/devel/find_missing_copyrights?rev=25915&r1=25914&r2=25915&view=diff
==============================================================================
--- trunk/docs/devel/find_missing_copyrights    (original)
+++ trunk/docs/devel/find_missing_copyrights    Fri Sep 19 11:33:11 2014
@@ -1,7 +1,7 @@
 The following is a command which can be used to view all edits by a certain 
user for the entire year.  This svn log is then parsed and all the added and 
modified files extracted.  Each file is then grepped from the copyright 
statement, and all copyright statements from the year removed.  The remaining 
printout lists the files which require a copyright notice update.
 
 svn log -v -r{"2014-01-01 00:00:00"}:{"2014-12-31 00:00:00"} \
-| sed -n '/ | tlinnet | /,/-----$/ p' \
+| sed -n '/^r..... | tlinnet | /,/-----$/ p' \
 | grep "^   [AM] " \
 | sort -u \
 | sed 's/   M //g' \
@@ -16,6 +16,6 @@
 To change to a different developer, for example replace 'tlinnet' with 
'bugman' and 'Troels' with 'Edward'.  To check the history of one of these 
files, say 'lib/xyz.py', to be sure that the developer edited the file, type:
 
 svn log -v lib/xyz.py \
-| sed -n '/ | bugman | /,/-----$/ p' \
+| sed -n '/^r..... | tlinnet | /,/-----$/ p' \
 | less
 




Related Messages


Powered by MHonArc, Updated Fri Sep 19 12:00:03 2014