17 lines
585 B
Bash
17 lines
585 B
Bash
cdir=$(pwd)
|
|
for p in sqlor ahserver kboss msp llmage xls2ddl rbac platformbiz sage uapi dapi llmengiine rag bricks appbase sqlor shtools filemgr findperson media checklang fvlm nvidia-asr f5tts iptv filetxt cpcc accounting hdimage bookbug qlora-train pf_pay ydns qwenvl fwar moonshineASR wasr rtcllm asr krag pcapi
|
|
do
|
|
echo $p $cdir/$p
|
|
cd $cdir
|
|
git clone git@git.kaiyuancloud.cn:yumoqing/$p
|
|
cd $p
|
|
rm -rf .git
|
|
git init
|
|
git checkout -b main
|
|
git add *
|
|
git commit -m "first commit"
|
|
git remote add origin https://git.opencomputing.cn/yumoqing/$p.git
|
|
git push -u origin main
|
|
|
|
done
|