The multiple-repositories tag has no wiki summary.
0
votes
2answers
47 views
managing large numbers of mercurial repositories on a server
I've read about the single central repository vs. multiple repositories approach in Mercurial (e.g. these SO questions), and it's pretty clear that small repositories (one per self-contained project) ...
0
votes
2answers
30 views
Continuous merging of multiple Mercurial repositories
I'm working on a website that has been in production for some year now. Soon I will start working on a new version, and its initial repository will be a copy of the current site's repository. After ...
1
vote
1answer
72 views
Take artifacts from multiple repositories with Maven
How can I configure a maven project to take one of the artifacts from a different repository?
I would like to include this in the project https://github.com/twitter/hadoop-lzo but I can find it only ...
3
votes
1answer
69 views
Can one git repository track subversion and git remotes?
I am going to set up extra repositories for our partners, while our official repository is svn, I am free to pick the repositories for our partners.
My idea is to clone our repo with git-svn(let's ...
4
votes
3answers
115 views
Managing GIT permissions - multiple repositories
We have several development teams, each of which develop multiple projects (10+ usually). We are currently in CVS and evaluating whether to move to SVN or GIT. I am leaning towards GIT, however I am ...
0
votes
1answer
70 views
Any good SVN tool for eclipse to manage multiple repositories at once?
I'm using subclipse for svn in eclipse, however it can't manage multiple repositories, I had to disconnect and connect again, disconnect and connect again to transfer different revisions of my ...
2
votes
2answers
231 views
multiple git repositories cloned into the same directory
I've got a standard repository for my project
/home/repo/.git
this is the repository i clone to get the base code for new websites
i.e. i cloned this to
/var/www/site1
i also have several ...
0
votes
0answers
53 views
GitHub workflow multiple repositories and GUI Tool
I will apologize straight away as I am noobie to git, started using it few weeks ago.
I am creating a workflow scheme with GitHub. I found some great resources to achieve that, using single ...
2
votes
1answer
221 views
Using git flow with git subtree
I just migrated a large svn repo to git and started using gitflow. It worked like a charm but now I'm thinking about splitting that big repo into a number of smaller ones.
Let's supposse the repo ...
0
votes
1answer
47 views
Keeping multiple projects in sync using Git
Let's say I have two projects that I manage with Git (in different repos). I work on project1 completely independently from project2. I realize now that I can use project2 as a third-party software in ...
3
votes
5answers
571 views
Best source code control for a university environment (low overhead to manage repositories)
Does anyone know of a solution (web hosted or otherwise) for a source code control system that would work well in a university environment where information technology is the focus? We'd like to offer ...
2
votes
3answers
505 views
Is it possible to manage multiple repositories coherently?
I have a collection of git repositories that are independently versioned but related to one another. For example, when adding a feature I may have to add functionality to a shared library, and then ...
0
votes
1answer
41 views
GitHub maintain repo within repo directory
Im super new with using GitHub.. I cloned in a repo at html/mycms (repo is mycms) and now I have another repo I would like to maintain within.. I cloned it in at html/mycms/system/docs (repo is called ...
1
vote
2answers
564 views
synchronization of several remote git repositories
We have:
Remote repository with some project.
Several remote repositories, which I want to synchronize with previous one.
When something pushed in first project (1), I need to pull these changes ...
1
vote
1answer
75 views
git repositories, advice?
I have several repositories: a repository managing a database schema (composed of some .sql files) and a Python SqlAlchemy model (model.py, and other repos, which need to use the Python model file ...
2
votes
1answer
410 views
Combining multiple repositories of multiple projects into a single repository of an over-arching solution in Visual Studio 2010?
Suppose I have two Visual Studio 2010 projects, both in the same solution.
One project is a dll library for performing task x. And the other is a Windows Forms GUI Frontend for that library.
Let's ...
7
votes
3answers
1k views
Real World ASP.NET MVC Repositories
In the real world, Controllers can potentially need to use data from a variety of database tables and other data stores. For example:
[Authorize]
public class MembersController : Controller
...
5
votes
1answer
1k views
How can I setup my .git/config to be able to push to / pull from multiple remote repositories?
Ok, I have three different computers that I work from and right now their configurations are all different so I have to push/pull a certain on each and its very bothersome. What I want to do is have ...
1
vote
1answer
2k views
SVN multiple repositories in subfolders
I'm using apache+svn
apache config file:
LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
<Location ...
5
votes
3answers
281 views
Git Version Control - Views on Repositories?
I have a repositories, i want to have two "views": Developers can see the whole thing and customers should only see certain (tagged, or marked in another way) branches.
I thought about making two ...
63
votes
3answers
10k views
How do you work with a git repository within another repository?
I have a git media repository that I'm keeping all of my javascript and css master files and scripts that I'll use on various projects. My question is if I create a new project that's in it's own git ...
0
votes
1answer
3k views
Using SVNSERVE to host Subversion server, configuration files, etc
I have a SVNSERVE server set up to host multiple repositories.
Short question here
My question is really this: I have authz, passwd, and svnserve.conf in the main directory outside the repositories, ...