W mojej wersji Git [1] każdy podmoduł Git ma a name
i a path
. Niekoniecznie muszą być takie same [2] . Uzyskanie obu w niezawodny sposób, bez uprzedniego sprawdzenia submodułów ( git update --init
), jest trudnym czarodziejstwem powłoki.
Uzyskaj listę submodułów names
Nie mogę znaleźć sposób, jak to osiągnąć stosując git config
lub innego git
polecenia. Dlatego wróciliśmy do wyrażenia regularnego .gitmodules
(super brzydkie). Ale wydaje się to nieco bezpieczne, ponieważ git
ogranicza możliwą przestrzeń kodu dozwoloną dla podmodułu names
. Ponadto, ponieważ prawdopodobnie chcesz użyć tej listy do dalszego przetwarzania powłoki, rozwiązanie poniżej oddzielne wpisy za pomocą NULL
-bytes ( \0
).
$ sed -nre \
's/^\[submodule \"(.*)\"]$/\1\x0/p' \
"$(git rev-parse --show-toplevel)/.gitmodules" \
| tr -d '\n' \
| xargs -0 -n1 printf "%b\0"
I w twoim skrypcie:
#!/usr/bin/env bash
while IFS= read -rd '' submodule_name; do
echo submodule name: "${submodule_name}"
done < <(
sed -nre \
's/^\[submodule \"(.*)\"]$/\1\x0/p' \
"$(git rev-parse --show-toplevel)/.gitmodules" \
| tr -d '\n' \
| xargs -0 -n1 printf "%b\0"
)
Uwaga : read -rd ''
wymaga bash
i nie będzie działać sh
.
Uzyskaj listę submodułów paths
W moim podejściu staram nie przetwarzać dane wyjściowe git config --get-regexp
z awk
, tr
, sed
, ... ale zamiast przechodzić to zerowy bajt oddzielone z powrotem git config --get
. Ma to na celu uniknięcie problemów z znakami nowej linii, spacjami i innymi znakami specjalnymi (np. Unicode) w submodule paths
. Ponadto, ponieważ prawdopodobnie chcesz użyć tej listy do dalszego przetwarzania powłoki, rozwiązanie poniżej oddzielne wpisy za pomocą NULL
-bytes ( \0
).
$ git config --null --file .gitmodules --name-only --get-regexp '\.path$' \
| xargs -0 -n1 git config --null --file .gitmodules --get
Na przykład w skrypcie Bash możesz:
#!/usr/bin/env bash
while IFS= read -rd '' submodule_path; do
echo submodule path: "${submodule_path}"
done < <(
git config --null --file .gitmodules --name-only --get-regexp '\.path$' \
| xargs -0 -n1 git config --null --file .gitmodules --get
)
Uwaga : read -rd ''
wymaga bash
i nie będzie działać sh
.
Przypisy
[1] Wersja Git
$ git --version
git version 2.22.0
[2] Submoduł z rozbieżnymi name
ipath
Skonfiguruj repozytorium testowe:
$ git init test-name-path
$ cd test-name-path/
$ git checkout -b master
$ git commit --allow-empty -m 'test'
$ git submodule add ./ submodule-name
Cloning into '/tmp/test-name-path/submodule-name'...
done.
$ ls
submodule-name
$ cat .gitmodules
[submodule "submodule-name"]
path = submodule-name
url = ./
Przesuń submoduł, aby utworzyć name
i path
rozdzielić:
$ git mv submodule-name/ submodule-path
$ ls
submodule-path
$ cat .gitmodules
[submodule "submodule-name"]
path = submodule-path
url = ./
$ git config --file .gitmodules --get-regexp '\.path$'
submodule.submodule-name.path submodule-path
Testowanie
Skonfiguruj repozytorium testowe:
$ git init test
$ cd test/
$ git checkout -b master
$ git commit --allow-empty -m 'test'
$
$ git submodule add ./ simplename
Cloning into '/tmp/test/simplename'...
done.
$
$ git submodule add ./ 'name with spaces'
Cloning into '/tmp/test/name with spaces'...
done.
$
$ git submodule add ./ 'future-name-with-newlines'
Cloning into '/tmp/test/future-name-with-newlines'...
done.
$ git mv future-name-with-newlines/ 'name
> with
> newlines'
$
$ git submodule add ./ 'name-with-unicode-💩'
Cloning into '/tmp/test/name-with-unicode-💩'...
done.
$
$ git submodule add ./ sub/folder/submodule
Cloning into '/tmp/test/sub/folder/submodule'...
done.
$
$ git submodule add ./ name.with.dots
Cloning into '/tmp/test/name.with.dots'...
done.
$
$ git submodule add ./ 'name"with"double"quotes'
Cloning into '/tmp/test/name"with"double"quotes'...
done.
$
$ git submodule add ./ "name'with'single'quotes"
Cloning into '/tmp/test/name'with'single'quotes''...
done.
$ git submodule add ./ 'name]with[brackets'
Cloning into '/tmp/test/name]with[brackets'...
done.
$ git submodule add ./ 'name-with-.path'
Cloning into '/tmp/test/name-with-.path'...
done.
.gitmodules
:
[submodule "simplename"]
path = simplename
url = ./
[submodule "name with spaces"]
path = name with spaces
url = ./
[submodule "future-name-with-newlines"]
path = name\nwith\nnewlines
url = ./
[submodule "name-with-unicode-💩"]
path = name-with-unicode-💩
url = ./
[submodule "sub/folder/submodule"]
path = sub/folder/submodule
url = ./
[submodule "name.with.dots"]
path = name.with.dots
url = ./
[submodule "name\"with\"double\"quotes"]
path = name\"with\"double\"quotes
url = ./
[submodule "name'with'single'quotes"]
path = name'with'single'quotes
url = ./
[submodule "name]with[brackets"]
path = name]with[brackets
url = ./
[submodule "name-with-.path"]
path = name-with-.path
url = ./
Pobierz listę submodułów names
$ sed -nre \
's/^\[submodule \"(.*)\"]$/\1\x0/p' \
"$(git rev-parse --show-toplevel)/.gitmodules" \
| tr -d '\n' \
| xargs -0 -n1 printf "%b\0" \
| xargs -0 -n1 echo submodule name:
submodule name: simplename
submodule name: name with spaces
submodule name: future-name-with-newlines
submodule name: name-with-unicode-💩
submodule name: sub/folder/submodule
submodule name: name.with.dots
submodule name: name"with"double"quotes
submodule name: name'with'single'quotes
submodule name: name]with[brackets
submodule name: name-with-.path
Pobierz listę submodułów paths
$ git config --null --file .gitmodules --name-only --get-regexp '\.path$' \
| xargs -0 -n1 git config --null --file .gitmodules --get \
| xargs -0 -n1 echo submodule path:
submodule path: simplename
submodule path: name with spaces
submodule path: name
with
newlines
submodule path: name-with-unicode-💩
submodule path: sub/folder/submodule
submodule path: name.with.dots
submodule path: name"with"double"quotes
submodule path: name'with'single'quotes
submodule path: name]with[brackets
submodule path: name-with-.path
git submodule
zachowuje się tak, jak oczekiwałem hipotetycznegogit submodule list
zachowania - po prostu nigdy nie myślałem, aby sprawdzić, co się stanie bez argumentówgit submodule
. (Cieszę się, że przetestowałem ten link, ponieważ początkowo złapałem niewłaściwy link „Udostępnij”!)