跳转到主要内容
ipumpkin 提交于 17 September 2013

原文链接:https://drupal.org/node/711070#copying-repo

你可以一次性从其他已经存在的Git资源库生成一个 Drupal.org上的资源库。比如 Github

# 将源资源库已镜像方式检出
git clone --mirror [github_or_other_url]
cd [repository]
# 根据在drupal.org 版本控制选项卡中的管理 URL创建一个新资源库
git remote add newproject [maintainer_url_from_git_instructions]
# 将所有代码及分支提交到 drupal.org上
git push --all newproject