forked from joelparkerhenderson/architecture-decision-record
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add how-to-start-using-adrs-with-git
- Loading branch information
1 parent
e0554f3
commit c99aab6
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
locales/en/doc/how-to-start-using-adrs-with-git/.locale-peer-id
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 @@ | ||
d6fb3c7d91f95003163e694e74058e9d |
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 @@ | ||
index.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,19 @@ | ||
# How to start using ADRs with git | ||
|
||
If you like using git version control, then here is how we like to start using ADRs with git for a typical software project with source code. | ||
|
||
Create a directory for ADR files: | ||
|
||
```sh | ||
$ mkdir adr | ||
``` | ||
|
||
For each ADR, create a text file, such as `database.txt`: | ||
|
||
```sh | ||
$ vi database.txt | ||
``` | ||
|
||
Write anything you want in the ADR. See the templates in this repository for ideas. | ||
|
||
Commit the ADR to your git repo. |