forked from npryce/adr-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsupercede-multiple-adrs.expected
31 lines (28 loc) · 1 KB
/
supercede-multiple-adrs.expected
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
adr init docs madr
docs/0001-use-markdown-architectural-decision-records.md
adr new First Record
docs/0002-first-record.md
adr new Second Record
docs/0003-second-record.md
adr new -s 2 -s 3 Third Record
docs/0004-third-record.md
head -7 docs/0002-first-record.md
---
title: "2. First Record"
---
* Status: superseded by [4. Third Record]({{< ref "0004-third-record.md" >}})
* Deciders: [list everyone involved in the decision] <!-- optional -->
* Date: 1992-01-12
head -7 docs/0003-second-record.md
---
title: "3. Second Record"
---
* Status: superseded by [4. Third Record]({{< ref "0004-third-record.md" >}})
* Deciders: [list everyone involved in the decision] <!-- optional -->
* Date: 1992-01-12
tail -6 docs/0004-third-record.md
## Links <!-- optional -->
* [Link type] [Link to ADR] <!-- example: Refined by [ADR-0005](0005-example.md) -->
* … <!-- numbers of links can vary -->
* supersedes [2. First Record]({{< ref "0002-first-record.md" >}})
* supersedes [3. Second Record]({{< ref "0003-second-record.md" >}})