Git多仓库及其子仓库项目拉取

Git多仓库及其子仓库项目拉取

背景

在公司项目中遇到了一个项目的各个子模块在不同git仓库中,于是将所有git仓库目录放到一个子目录下,并写了一个简单的同步脚本。

脚本

#!/usr/bin/env bash

#!/usr/bin/env bash

if test -z "$1"; then
  $1 = dev
fi

if test -z "$2"; then
  $2 = ./
fi

workPath=$(readlink -f $2)

for file in $workPath/*; do
  if test -d ${file}; then
    #  filePath=$(readlink -f ${file})
    cd ${file}
    if test -f pom.xml; then
      mvn clean &
    fi
    #  check if contains git repository
    if test -d .git; then

      echo "================update git repository in file: "${file}"================"
      # change to target brach
      remoteDevBranchName=$(git branch -a | grep $1 | grep origin)
      if test -n "$remoteDevBranchName"; then
        echo "===
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值