1 Star 0 Fork 2

天津人易宝智能科技有限公司/gitlab_sync

forked from itopen/gitlab_sync 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
upload.sh 757 Bytes
一键复制 编辑 原始数据 按行查看 历史
wenfei6316 提交于 2024-07-04 20:56 . add virtual env config
#!/usr/bin/env bash
set -e
project_name=$1
code_path=$2
branch=$3
gitlab_url=$4
remote_name="gitlab"
echo "project is ${project_name}"
echo "code_path is ${code_path}"
echo "branch is ${branch}"
echo "gitlab_url is ${gitlab_url}"
if [ ! -d ${code_path} ]; then
exit 0
fi
pushd ${code_path}
origin_check=$(git remote show | grep ${remote_name} | wc -l)
if [[ ${origin_check} -gt 0 ]]; then
git remote remove ${remote_name}
fi
git remote add ${remote_name} ${gitlab_url}
set +e
git fetch --unshallow
set -e
git fetch ${remote_name}
set +e
lfs_check=$(find ./.git -name "lfs" | wc -l)
if [[ ${lfs_check} -gt 0 ]]; then
git lfs fetch --all
git lfs push ${remote_name} --all
fi
set -e
git push -u ${remote_name} HEAD:refs/heads/${branch}
popd
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tianjin-renyibao/gitlab_sync.git
[email protected]:tianjin-renyibao/gitlab_sync.git
tianjin-renyibao
gitlab_sync
gitlab_sync
master

搜索帮助