批量 git clone

批量 git clone

首先,新建 batch_git_clone.sh 文件,编写 shell 脚本,

#!/bin/sh
echo "批量git clone开始!"

while read git_url
do
  # 过滤空行,以及#开头的注释行
  [[ -z $git_url || $git_url =~ ^#.* ]] && continue
  git clone ${git_url};
done < $1

wait

echo "批量git clone结束!"

接着,新建 git_url_list.txt 文件,用于存放 git url。

https://github.com/xxx/xxx.git
https://github.com/xxx/xxx.git

最后,执行脚本即可。

sh batch_git_clone.sh  git_url_list.txt

你可能感兴趣的:(git,git,github,linux)