mirror of
https://github.com/taigrr/yq
synced 2025-01-18 04:53:17 -08:00
18 lines
172 B
YAML
18 lines
172 B
YAML
foo: &foo
|
|
a: original
|
|
thing: coolasdf
|
|
|
|
bar: &bar
|
|
b: 2
|
|
thing: coconut
|
|
c: oldbar
|
|
|
|
foobarList:
|
|
<<: [*foo,*bar]
|
|
c: newbar
|
|
|
|
foobar:
|
|
<<: *foo
|
|
thing: ice
|
|
c: 3
|