-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# template-stacks | ||
|
||
This repository is a template of a monorepo for declaratively managing infrastructure and configuration. | ||
|
||
## Updating from the template | ||
|
||
To pull updates from this template to your repository instance, add this template repository as a remote to your | ||
repository instance: | ||
|
||
```bash | ||
git remote add template [email protected]:cncsc/template-stacks.git | ||
``` | ||
|
||
Then, fetch the most recent changes: | ||
|
||
```bash | ||
git fetch --all | ||
``` | ||
|
||
Then, merge the changes from this template to your repository instance: | ||
|
||
```bash | ||
git merge template/main --allow-unrelated-histories | ||
``` |