sh 克隆所有github回购

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 克隆所有github回购相关的知识,希望对你有一定的参考价值。

function git.github.clone.organization() {
    if [ $# -ne 0 ]
    then
        mkdir $1
        cd $1
        curl -s https://api.github.com/orgs/$1/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}'
    else
        echo "git.github.clone.organization <organization>"
    fi
}

以上是关于sh 克隆所有github回购的主要内容,如果未能解决你的问题,请参考以下文章

sh 从github中的组织下载所有回购

GitHub Actions - 将公共回购克隆到我的私人回购?

GitKraken没有显示回购我是贡献者

sh 备份你的github回购

回购的所有者可以看到克隆吗?

sh 完成节点重新安装。我已将其移至https://github.com/brock/node-reinstall上的回购