From 10e92baaa592afcb2bd03b0d487dae56f6f7a28d Mon Sep 17 00:00:00 2001 From: Inaki Fernandez Date: Tue, 15 Dec 2020 09:40:11 +0100 Subject: [PATCH] update December 15th --- docs/git.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/git.md b/docs/git.md index 4b54e3c3..ab9abeee 100644 --- a/docs/git.md +++ b/docs/git.md @@ -2,6 +2,7 @@ - [Git Distributed Version-Control System](#git-distributed-version-control-system) - [Design By Contract](#design-by-contract) - [Git Cheat Sheets](#git-cheat-sheets) +- [Monorepo VS Polyrepo](#monorepo-vs-polyrepo) - [Patterns for Managing Source Code Branches (Branching Models/Workflows)](#patterns-for-managing-source-code-branches-branching-modelsworkflows) - [Git Workflows](#git-workflows) - [Trunk Based Development](#trunk-based-development) @@ -77,6 +78,10 @@ It prescribes that software designers should define formal, precise and verifiab ## Git Cheat Sheets * [Git and GitHub Cheat Sheets](cheatsheets.md) +## Monorepo VS Polyrepo +* [fourtheorem.com: How to end Microservice pain and embrace the Monorepo](https://www.fourtheorem.com/blog/monorepo) +* [medium: The Pros and Cons of Monorepos, Explained](https://medium.com/better-programming/the-pros-and-cons-monorepos-explained-f86c998392e1) Should you keep all of your code in a single directory? + ## Patterns for Managing Source Code Branches (Branching Models/Workflows) * [paulhammant.com: What is Your Branching Model?:](https://paulhammant.com/2013/12/04/what_is_your_branching_model/) Mainline, Cascade, Trunk-Based Development, Short Lived Feature Branches, Continuous Deployment, Subversion noise on branching, etc. * [adevait.com: Creating a Branching Strategy for Small Teams](https://adevait.com/software/creating-branching-strategy)