-
Notifications
You must be signed in to change notification settings - Fork 589
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement issue #62: search for ADR dir in parents of current
directory.
- Loading branch information
Showing
7 changed files
with
84 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
adr new First Record | ||
doc/adr/0001-first-record.md | ||
mkdir subdir | ||
cd subdir | ||
adr new Second Record | ||
../doc/adr/0002-second-record.md | ||
adr list | ||
../doc/adr/0001-first-record.md | ||
../doc/adr/0002-second-record.md | ||
cd .. | ||
adr list | ||
doc/adr/0001-first-record.md | ||
doc/adr/0002-second-record.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
adr new First Record | ||
mkdir subdir | ||
cd subdir | ||
adr new Second Record | ||
adr list | ||
cd .. | ||
adr list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
adr init architecture-log | ||
architecture-log/0001-record-architecture-decisions.md | ||
adr new First Record | ||
architecture-log/0002-first-record.md | ||
mkdir subdir | ||
cd subdir | ||
adr new Second Record | ||
../architecture-log/0003-second-record.md | ||
adr list | ||
../architecture-log/0001-record-architecture-decisions.md | ||
../architecture-log/0002-first-record.md | ||
../architecture-log/0003-second-record.md | ||
cd .. | ||
adr list | ||
architecture-log/0001-record-architecture-decisions.md | ||
architecture-log/0002-first-record.md | ||
architecture-log/0003-second-record.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
adr init architecture-log | ||
adr new First Record | ||
mkdir subdir | ||
cd subdir | ||
adr new Second Record | ||
adr list | ||
cd .. | ||
adr list |