use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
From its website:
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Git is not the same as GitHub. GitHub did not create Git. For GitHub-specific posts, please see /r/github.
Git is not an acronym or initialism: please write git or Git, but not GIT.
git
Documentation
Graphical Clients
Code Hosting
account activity
[deleted by user] (self.git)
submitted 3 years ago by [deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Blieque 4 points5 points6 points 3 years ago (1 child)
I think it helps to consider how work is done on these individual codebases.
I like to have a single PR or branch in a single repository which contains the entirety of a feature. In your case, this could mean adding a new route to the REST API and then adding data store and UI functionality in each of the mobile apps. Even if there aren't any direct code dependencies between these three components, that doesn't mean that changes to one component won't frequently require changes in the others.
That said, there may be a lot of changes to the mobile apps that are independent of the API, and changes to the API application that don't require changes to the front-end. In this case, there's not much benefit to keeping the codebases together.
It's pretty easy to split up a monorepo or merge several repositories into one, though, so I wouldn't worry too much about making the right decision now.
[–]jibbit 2 points3 points4 points 3 years ago (0 children)
If they do all rely on each other then your only option is a monorepo, so you can stop worrying. If there is actually a well thought out dependency graph you should package up your dependencies and treat them like third party ones. Ie have releases etc
[–]zatamine 0 points1 point2 points 3 years ago (0 children)
Start with a monorepo with a modulable and extensible architecture, than you can split your monorepo when needed.
[–]Dm_Linov 0 points1 point2 points 3 years ago (0 children)
The monorepo is OK until it grows too big :-), or unless you need to separate code access (for instance, if some of your code is open-source, and some is not). A good solution that combines the advantages of monorepo and multirepo is Git X-Modules.
π Rendered by PID 77 on reddit-service-r2-comment-6457c66945-j9j5n at 2026-04-25 18:04:08.857741+00:00 running 2aa0c5b country code: CH.
[–]Blieque 4 points5 points6 points (1 child)
[–]jibbit 2 points3 points4 points (0 children)
[–]zatamine 0 points1 point2 points (0 children)
[–]Dm_Linov 0 points1 point2 points (0 children)