19

我想创建一个新的存储库作为我项目的子模块。

通常,我创建一个 Github 存储库,然后使用命令将其添加为子模块 git submodule add url_to_repo.git

有没有办法直接创建一个新的 repo 作为子模块,而无需先在其他地方创建 repo(既不是本地也不是远程,例如在 Github 上)?

4

3 回答 3

7

简单的!Saysubmodule_dir是您希望子模块化的目录的名称(假设它尚未在 git 控制下)。

cd submodule_dir
git init
git add .
git commit
# on github, create the new repo, then:
git remote add origin git@github.com:your_username/your_repo_name.git
git push -u origin master
cd ..
mv submodule_dir submodule_dir_delete_me
git submodule add git@github.com:your_username/your_repo_name.git submodule_dir

稍后(一旦你高兴)

rm -rf submodule_dir_delete_me
于 2015-09-20T08:18:37.703 回答
6

如果我理解正确,这就是我经常为 Eclipse 项目和工作区做的事情。让我们从这个结构开始:

$ find .
.
./projekt.txt
./sub1
./sub1/sub1.txt
./sub2
./sub2/sub2.txt

首先初始化子模块和主模块:

$ cd sub1
$ git init
$ git add *
$ git commit -m "init sub1"
$ cd ../sub2
$ git init
$ git add *
$ git commit -m "init sub2"
$ cd ..
$ git init
$ git status
# On branch master
#
# Initial commit
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#   projekt.txt
#   sub1/
#   sub2/

要将这些文件夹添加为子模块而不是常规文件夹,只需执行以下命令,并使用相对路径./sub而不是仅仅sub

$ git submodule add ./sub1
$ git submodule add ./sub2

现在它应该看起来像

$ git status
# On branch master
#
# Initial commit
#
# Changes to be committed:
#   (use "git rm --cached <file>..." to unstage)
#
#   new file:   .gitmodules
#   new file:   sub1
#   new file:   sub2
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#   projekt.txt

最后在父文件夹上做一个git add *andgit commit -m "init parent"就可以了!

如果您现在更改其中一个子模块中的文件,则必须先提交子模块,然后再提交父存储库,以便在有人克隆您的父存储库时获得子模块的最新版本。

于 2013-10-27T14:24:38.980 回答
5

我看不出你怎么能:一个子模块定义为来自另一个 repo 的 SHA1(即父 repo 必须存在另一个 repo 才能提取所说的 SHA1):你必须在你保存的.gitmodules文件中引用它的地址在父回购。

子模块由主存储库中所谓的gitlink 树条目组成,该条目引用内部存储库中完全独立的特定提交对象。

submodule.<name>.url

定义可以从中克隆子模块存储库的 URL。这可能是准备好传递给 git-clone(1) 的绝对 URL,或者(如果它以./或开头../)相对于超级项目的原始存储库的位置。

因此,您可以在本地创建子模块 repo,但无论如何您都必须创建它。

于 2013-02-10T18:00:48.337 回答