[BACK]Return to bk-make-xfs CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfsmisc

File: [Development] / xfs-cmds / xfsmisc / Attic / bk-make-xfs (download)

Revision 1.1, Wed Jun 22 05:59:18 2005 UTC (12 years, 3 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN

Update scripts for pushing kernel changes to upstream maintainers.
Merge of master-melb:xfs-cmds:22947a by kenmcd.

#!/bin/sh -e
# extract changesets from a bk repo, produce email body

PARENT=$1
DIRBASE=`basename $PWD`

cat <<EOT
Please do a

	bk pull http://oss.sgi.com:8090/$DIRBASE

This will update the following files:

EOT

bk changes -L -d'$unless(:MERGE:){:CSETREV:\n}' $PARENT |
while read rev; do
  bk export -tpatch -r$rev
done | diffstat -p1 2>/dev/null

cat <<EOT

through these ChangeSets:

EOT

bk changes -L $PARENT