[ 
https://issues.apache.org/jira/browse/SANDBOX-247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12612425#action_12612425
 ] 

tcurdt edited comment on SANDBOX-247 at 7/10/08 8:00 AM:
----------------------------------------------------------------

Patchset generated with:

{code}
#/bin/sh

DEST=$1

PREV=""
( git log --reverse --pretty=format:"%ae %at %H" ; echo ) |
while read line
do
    AUTHOR=`echo "$line" | awk '{print $1}'`
    TIMESTAMP=`echo "$line" | awk '{print $2}'`
    HASH=`echo "$line" | awk '{print $3}'`
    
        mkdir -p $DEST/$AUTHOR
        git diff $PREV $HASH > $DEST/$AUTHOR/patch-$TIMESTAMP-$HASH.diff
        PREV=$HASH
done
{code}

      was (Author: tcurdt):
    Patchset generated with:

{code}
#/bin/sh

DEST=$1

git log --pretty=format:"%ae %at %H" |
while read line
do
    AUTHOR=`echo "$line" | awk '{print $1}'`
    TIMESTAMP=`echo "$line" | awk '{print $2}'`
    HASH=`echo "$line" | awk '{print $3}'`
    
        mkdir -p $DEST/$AUTHOR
        git diff $HASH > $DEST/$AUTHOR/patch-$TIMESTAMP.diff
done
{code}
  
> Redesign of Commons Compress
> ----------------------------
>
>                 Key: SANDBOX-247
>                 URL: https://issues.apache.org/jira/browse/SANDBOX-247
>             Project: Commons Sandbox
>          Issue Type: Improvement
>          Components: Compress
>            Reporter: Torsten Curdt
>            Assignee: Torsten Curdt
>         Attachments: patches.zip
>
>
> Redesign of commons compress contributed by Christian Grobmeier and Torsten 
> Curdt.
> Both CLAs on file. Git log and patchset generated from the git log attached.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to