https://github.com/vtsykun/test-monolithic
Simple example of monolithic repository
https://github.com/vtsykun/test-monolithic
workflow
Last synced: about 1 month ago
JSON representation
Simple example of monolithic repository
- Host: GitHub
- URL: https://github.com/vtsykun/test-monolithic
- Owner: vtsykun
- License: apache-2.0
- Created: 2017-08-16T21:28:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-28T23:12:55.000Z (over 7 years ago)
- Last Synced: 2025-01-26T08:24:47.388Z (3 months ago)
- Topics: workflow
- Language: PHP
- Homepage:
- Size: 628 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Workflow for Monolithic repository

What is Monolithic?
-----------------
For a system consisting of the strongly coupled discrete services, some changes may have global impact, so the source code
organization should allow to perform them in an efficient way. The monolithic repo is the main source code repository
for all development activities, contains the source code of all repositories nested inside another as a subdirectory.Create monolithic from existing repos
------------------------------------Git subtree add allow include into monolithic repo by importing its content from the given remote repo keeping git history.
See for more information https://github.com/git/git/blob/master/contrib/subtree/git-subtree.txtExample:
```
git subtree add --prefix=packages/database-isolation [email protected]:vtsykun/database-isolation.git master
```...