web-dev-qa-db-ja.com

.gitmodulesからgitサブモジュールを復元する

Gitレポであるフォルダーがあります。いくつかのファイルと.gitmodulesファイルが含まれています。さて、_git init その後 git submodule init、後者のコマンド出力は何もありません。 git submodule addまた手で?

更新:これは私の.gitmodulesファイルです:

[submodule "vim-pathogen"]
    path = vim-pathogen
    url = git://github.com/tpope/vim-pathogen.git
[submodule "bundle/python-mode"]
    path = bundle/python-mode
    url = git://github.com/klen/python-mode.git
[submodule "bundle/vim-fugitive"]
    path = bundle/vim-fugitive
    url = git://github.com/tpope/vim-fugitive.git
[submodule "bundle/ctrlp.vim"]
    path = bundle/ctrlp.vim
    url = git://github.com/kien/ctrlp.vim.git
[submodule "bundle/vim-tomorrow-theme"]
    path = bundle/vim-tomorrow-theme
    url = git://github.com/chriskempson/vim-tomorrow-theme.git

このディレクトリのリストは次のとおりです。

drwxr-xr-x  4 evgeniuz 100 4096 июня  29 12:06 .
drwx------ 60 evgeniuz 100 4096 июня  29 11:43 ..
drwxr-xr-x  2 evgeniuz 100 4096 июня  29 10:03 autoload
drwxr-xr-x  7 evgeniuz 100 4096 июня  29 12:13 .git
-rw-r--r--  1 evgeniuz 100  542 июня  29 11:45 .gitmodules
-rw-r--r--  1 evgeniuz 100  243 июня  29 11:18 .vimrc

ですから、間違いなくトップレベルにあります。 gitディレクトリは変更されず、git init 終わらせる

66
evgeniuz

git submodule initは、初期化のために既にインデックス内にある(つまり「ステージングされた」)サブモジュールのみを考慮します。 .gitmodulesを解析する短いスクリプトを作成し、urlpathのペアごとに実行します。

git submodule add <url> <path>

たとえば、次のスクリプトを使用できます。

#!/bin/sh

set -e

git config -f .gitmodules --get-regexp '^submodule\..*\.path$' |
    while read path_key path
    do
        url_key=$(echo $path_key | sed 's/\.path/.url/')
        url=$(git config -f .gitmodules --get "$url_key")
        git submodule add $url $path
    done

これは、 git-submodule.shスクリプト 自体が.gitmodulesファイルを解析する方法に基づいています。

90
Mark Longair

@Mark Longairの答えを拡張して、次のプロセスのステップ2と3を自動化するbashスクリプトを作成しました。

  1. 「定型的な」リポジトリを複製して新しいプロジェクトを開始する
  2. .gitフォルダーを削除して、新しいリポジトリーとして再初期化します
  3. サブモジュールを再初期化し、フォルダーを削除する前に入力を求めます

#!/bin/bash

set -e
rm -rf .git
git init

git config -f .gitmodules --get-regexp '^submodule\..*\.path$' > tempfile

while read -u 3 path_key path
do
    url_key=$(echo $path_key | sed 's/\.path/.url/')
    url=$(git config -f .gitmodules --get "$url_key")

    read -p "Are you sure you want to delete $path and re-initialize as a new submodule? " yn
    case $yn in
        [Yy]* ) rm -rf $path; git submodule add $url $path; echo "$path has been initialized";;
        [Nn]* ) exit;;
        * ) echo "Please answer yes or no.";;
    esac

done 3<tempfile

rm tempfile

注:サブモジュールは、ボイラープレートリポジトリと同じコミットではなく、マスターブランチの先端でチェックアウトされるため、手動で行う必要があります。

Git configからの出力を読み取りループにパイピングすると、入力のプロンプトで問題が発生したため、代わりに一時ファイルに出力します。私の最初のbashスクリプトの改善は大歓迎です:)


Mark、 https://stackoverflow.com/a/226724/193494bash:readも使用しているループ内のネストされたインタラクティブ読み取り 、およびtnettenba @ chatに大きな感謝.freenode.netでこのソリューションにたどり着きました!

15
Kevin C.

優れた@Mark Longairの回答を拡張して、ブランチとリポジトリ名を尊重するサブモジュールを追加します。

#!/bin/sh

set -e

git config -f .gitmodules --get-regexp '^submodule\..*\.path$' |
    while read path_key path
    do
        name=$(echo $path_key | sed 's/\submodule\.\(.*\)\.path/\1/')
        url_key=$(echo $path_key | sed 's/\.path/.url/')
        branch_key=$(echo $path_key | sed 's/\.path/.branch/')
        url=$(git config -f .gitmodules --get "$url_key")
        branch=$(git config -f .gitmodules --get "$branch_key" || echo "master")
        git submodule add -b $branch --name $name $url $path || continue
    done
4
mauron85

同様の問題がありました。 git submodule initは黙って失敗していました。

私がやったとき:

git submodule add <url> <path>

私が得た:

The following path is ignored by one of your .gitignore files: ...

.gitignore(d)パスが原因であると考えています。

3
Henry

しばらくは知っていますが、git configを1回だけ呼び出し、スクリプトを必要とせず、ブランチも処理するこのバージョンを共有したいと思います。

git config -f .gitmodules --get-regexp '^submodule\.' | Perl -lane'
$conf{$F[0]} = $F[1]}{
@mods = map {s,\.path$,,; $_} grep {/\.path$/} keys(%conf);
sub expand{$i = shift; map {$conf{$i . $_}} qw(.path .url .branch)}
for $i (@mods){
    ($path, $url, $branch) = expand($i);
    print(qq{rm -rf $path});
    print(qq{git submodule add -b $branch $url $path});
}
'

唯一の副作用はコマンドの出力であり、何も実行されないため、コマンドをコミットする前に監査できます。

これはコンソールでの単純なコピーアンドペーストで機能しますが、シェルスクリプトを入れるのは簡単です。

出力例:

rm -rf third-party/dht
git submodule add -b post-0.25-transmission https://github.com/transmission/dht third-party/dht
rm -rf third-party/libutp
git submodule add -b post-3.3-transmission https://github.com/transmission/libutp third-party/libutp
rm -rf third-party/libb64
git submodule add -b post-1.2.1-transmission https://github.com/transmission/libb64 third-party/libb64
rm -rf third-party/libnatpmp
git submodule add -b post-20151025-transmission https://github.com/transmission/libnatpmp third-party/libnatpmp
rm -rf third-party/miniupnpc
git submodule add -b post-2.0.20170509-transmission https://github.com/transmission/miniupnpc third-party/miniupnpc
rm -rf third-party/libevent
git submodule add -b post-2.0.22-transmission https://github.com/transmission/libevent third-party/libevent
1
alexgirao