ในรุ่นของฉัน Git [1]ทุก submodule Git มีและname
path
พวกเขาไม่จำเป็นต้องเหมือนกัน[2] รับทั้งในวิธีที่เชื่อถือได้โดยไม่ต้องตรวจสอบ submodules ก่อน ( git update --init
) เป็นบิตของพ่อมดเชลล์
รับรายการ submodule names
ฉันไม่พบวิธีการใช้สิ่งนี้git config
หรือgit
คำสั่งอื่น ๆ ดังนั้นเราจะกลับไป regex บน.gitmodules
(super น่าเกลียด) แต่ดูเหมือนว่าจะค่อนข้างปลอดภัยตั้งแต่git
จำกัด พื้นที่รหัสที่เป็นไปได้ได้รับอนุญาตให้ names
submodule นอกจากนี้เนื่องจากคุณอาจต้องการใช้รายการนี้สำหรับการประมวลผลเชลล์เพิ่มเติมโซลูชันด้านล่างแยกรายการด้วย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"
และในสคริปต์ของคุณ:
#!/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"
)
หมายเหตุ : read -rd ''
ต้องการbash
sh
และจะไม่ทำงานกับ
รับรายการ submodule paths
ในวิธีการของฉันฉันพยายามไม่ได้ที่จะดำเนินการส่งออกจากgit config --get-regexp
กับawk
, tr
, sed
... git config --get
แต่แทนที่จะผ่านมันไบต์ศูนย์แยกออกจากกันกลับไป นี้คือการหลีกเลี่ยงการเกิดปัญหากับการขึ้นบรรทัดใหม่, ช่องว่างและอักขระพิเศษอื่น ๆ (เช่น Unicode) ใน paths
submodule นอกจากนี้เนื่องจากคุณอาจต้องการใช้รายการนี้สำหรับการประมวลผลเชลล์เพิ่มเติมโซลูชันด้านล่างแยกรายการด้วยNULL
-bytes ( \0
)
$ git config --null --file .gitmodules --name-only --get-regexp '\.path$' \
| xargs -0 -n1 git config --null --file .gitmodules --get
ตัวอย่างเช่นในสคริปต์ Bash คุณสามารถ:
#!/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
)
หมายเหตุ : read -rd ''
ต้องและจะไม่ทำงานกับbash
sh
เชิงอรรถ
[1]รุ่น Git
$ git --version
git version 2.22.0
[2] Submodule พร้อม diverging name
และpath
ตั้งค่าพื้นที่เก็บข้อมูลทดสอบ:
$ 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 = ./
ย้าย submodule เพื่อสร้างname
และpath
เบี่ยงเบน:
$ 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
การทดสอบ
ตั้งค่าพื้นที่เก็บข้อมูลทดสอบ:
$ 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 = ./
รับรายการ submodule 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
รับรายการ submodule 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
พฤติกรรมตามที่ผมคาดว่าสมมุติgit submodule list
ที่จะประพฤติ - ฉันก็ไม่เคยคิดที่จะตรวจสอบสิ่งที่เกิดขึ้นกับไม่มีgit submodule
ข้อโต้แย้ง (ดีใจที่ผมทดสอบการเชื่อมโยงว่าตั้งแต่ผมคว้าผิดลิงก์ 'แบ่งปัน' ครั้งแรก!)