mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
20 lines
209 B
YAML
20 lines
209 B
YAML
foo: &foo
|
|
a: original
|
|
thing: coolasdf
|
|
thirsty: yep
|
|
|
|
bar: &bar
|
|
b: 2
|
|
thing: coconut
|
|
c: oldbar
|
|
|
|
foobarList:
|
|
<<: [*foo,*bar]
|
|
c: newbar
|
|
|
|
foobar:
|
|
<<: *foo
|
|
thirty: well beyond
|
|
thing: ice
|
|
c: 3
|