在git中,導出兩個分支中不一樣的文件,第一個是舊分支,最後一個是新分支

#!/bin/sh



echo '請輸入 老的分子 和 新的分支 中間用空格分割!eg:master test'
dt=`date +%Y%m%d%H%M`
FN="/tmp/zzz/$dt"
gitpath='/home/linux/work/svr.git/php.test'
if [ $# -eq 2 ];then
cd $gitpath
#1 out file name  設置輸出的寬度爲400字符
git diff --stat=400  -r $1 $2|awk '{print $1}' >> $FN.txt
#2 del last line
sed -i '$d' $FN.txt
target="/tmp/zzz/test_code_$1_$2_$dt"
#3 switch to new branch
git checkout $2
#4 export file
/usr/bin/rsync -rltDv --files-from=$FN.txt $gitpath  $target


### tar
cd $FN

ap=`tar -czPf $target/vip_code_$1_$2_$dt.tar.gz  $target`

echo "tar ok!";
else
echo '請輸入 老的分子 和 新的分支 中間用空格分割!eg:master test'
fi
echo "tar finish!"
php

相關文章
相關標籤/搜索