基於微服務專案,產生的的多專案倉庫管理指令碼。可直接儲存 shell 指令碼後酌情修改後試用
指令碼放置在外層目錄,將操作 Api 字尾目錄下 git 倉庫
#!/bin/bash
# 不要放在中文路徑下
# 介面
git clone http://xxxxx.com/XXX.XXXApi.git
read pause
#!/bin/bash
function getdir(){
for element in `ls $1 | grep /$`
do
dir_or_file=$1"\\"$element
echo $dir_or_file
cd $dir_or_file
git checkout $2
git pull
cd ..
done
}
root_dir="./"
branch=dev
getdir $root_dir $branch
#!/bin/bash
function getdir(){
for element in `ls -F $1 | grep /$`
do
dir_or_file=$1"\\"$element
echo $dir_or_file
if [ $element = "docs" ]
then
echo $dir_or_file skip
else
cd $dir_or_file
git pull
cd ..
fi
done
}
root_dir="./"
getdir $root_dir
#!/bin/bash
function getdir(){
for element in `ls $1 | grep /$`
do
dir_or_file=$1"\\"$element
echo $dir_or_file
cd $dir_or_file
git status
cd ..
done
}
root_dir="./"
getdir $root_dir
read pause
專案
: 匹配的文字*Api
:Api 字尾的目錄XXX
: 需要更新的指定包,匹配包名xxxxx.com
:nuget 源#!/bin/bash
#set -x
echo '自動升級nuget包-Need Setting shell to GBK Encoding'
function upgradePack(){
tempFile=./temp.txt
tempPackFile=./tempPack.txt
echo 當前目錄:$1
cd $1
cd src
pwd
#read pause
dotnet restore
dotnet list package --source xxxxxxx.com --include-prerelease --outdated>$tempFile
tempProjectMatch="專案"
projectName=''
cat $tempFile | while read line
do
#if [[ "$line" == *XXX* ]];then
if [[ $line =~ $tempProjectMatch ]];then
echo $line | grep -Eo "XXX.((\w)+(\.?))+">$tempPackFile
projectName=$(cat $tempPackFile)
echo 檢測專案:$projectName
else
if [[ "$line" == *XXX* ]];then
echo $line | grep -Eo "XXX.((\w)+(\.?))+">$tempPackFile
packageName=$(cat $tempPackFile)
echo 升級包:$packageName
dotnet add $projectName/$projectName.csproj package $packageName
fi
fi
#fi
done
rm $tempFile
rm $tempPackFile
}
function getdir(){
branchName=$2
for element in `ls $1 | grep /*Api`
do
dir_or_file=$1/$element
cd $dir_or_file
if([ "$branchName" != "" ]);then
git checkout $branchName
git pull
fi
upgradePack $dir_or_file
done
}
branch=dev
root_dir=$(cd `dirname $0`;pwd)
#echo 指令碼目錄:$root_dir
getdir $root_dir $branch
read pause
#!/bin/bash
#set -x
echo '重新命名分支-Need Setting shell to GBK Encoding'
function pushTag(){
echo 拉取dev分支
git checkout dev
echo 建立tag
time_span=v`date +%Y%m%d`
git tag -l $time_span
git tag -a -f -m relrease $time_span
echo 推播tag
git push --set-upstream origin $time_span -f
echo 推播完畢
}
function getdir(){
# 資料夾名匹配
for element in `ls $1 | grep -E 'XXXApi|YYYYApi'`
do
dir_or_file=$1/$element
cd $dir_or_file
pushTag $dir_or_file
done
}
root_dir=$(cd `dirname $0`;pwd)
#echo 指令碼目錄:$root_dir
getdir $root_dir
read pause
#!/bin/bash
#set -x
echo '自動提交-Need Setting shell to GBK Encoding'
function pushCode(){
echo 當前目錄:$1
git add *
git commit -m 更新包
git pull
git push
}
function getdir(){
branchName=$2
for element in `ls $1 | grep /*Api`
do
dir_or_file=$1/$element
cd $dir_or_file
pushCode $dir_or_file
done
}
branch=dev
root_dir=$(cd `dirname $0`;pwd)
#echo 指令碼目錄:$root_dir
getdir $root_dir $branch
read pause
#!/bin/bash
#set -x
echo '重新命名分支-Need Setting shell to GBK Encoding'
function pushTag(){
echo 當前目錄:$1 $branch
echo 拉取dev分支
git checkout dev
echo 建立tag
time_span=v`date +%Y%m%d`
git tag -l $time_span
git tag -a -f -m relrease $time_span
echo 推播tag
git push --set-upstream origin $time_span -f
echo 推播完畢
}
function pushCode(){
echo 當前目錄:$1 $branch
echo 切換到dev,開始合併
git checkout dev
git pull
echo 刪除release分支
git branch -d release
echo 新建release分支
git checkout -b release
echo 推播新的release分支
git push --set-upstream origin release -f
}
function getdir(){
for element in `ls $1 | grep /*Api`
do
dir_or_file=$1/$element
cd $dir_or_file
pushTag $dir_or_file
pushCode $dir_or_file
echo 睡眠30秒
sleep 30s
done
}
root_dir=$(cd `dirname $0`;pwd)
#echo 指令碼目錄:$root_dir
getdir $root_dir
read pause