multiple-repositories

Is it possible to manage multiple repositories coherently?

天大地大妈咪最大 提交于 2019-12-30 06:01:32
问题 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 extend an application or service to take advantage of that functionality. Currently, I would have to create a branch on each of the repositories that I touch while working on that feature. What I would like to do, however, is to simplify the process by branching and merging those multiple

Managing many git repositories

旧时模样 提交于 2019-12-27 16:40:27
问题 Setting up a project is easy in git and so I can have separate repository even for small script. Now the problem is how to manage them. I work in multiple places with these repositories. When I have done changes to some repository, I want to be able to update the repositories in other places. So I have a directory with many repositories in it. How can I fetch all of them? How can I check whether any of them have uncommitted changes? How can I check whether any of them have changes to merge?

How do I “mount” one github repository as a subfolder of another repository?

大憨熊 提交于 2019-12-21 17:23:12
问题 I have a github repository named "foo" (or rather "myusername/foo"). Now suppose I want to create a repository named "bar", which uses the code in foo; I could just make a copy of the files, but I don't want to need to pull updates - I want to always see only whatever's in the "foo" repository right now; and not to have commits of "updates from foo". I believe I've noticed some repositories in which subfolders are actually separate repositories; and I know git supports sub-repositories or

multiple git repositories cloned into the same directory [duplicate]

穿精又带淫゛_ 提交于 2019-12-21 02:27:08
问题 This question already has answers here : Two git repositories in one directory? (9 answers) Closed 2 years ago . 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 modules that i've created as repositories, some websites will be using these modules and some will not. /home/modules/mod1/.git /home/modules/mod2/.git is there a way that i can clone those

syncing variations on a repository git

二次信任 提交于 2019-12-13 07:29:10
问题 I am trying to figure out how (if possible) to set up multiple git repositories to behave in a specific way. Basically, we have multiple repositories for multiple clients, however they are meant to all share a system directory. When a change is made to the system directory for one client, it should be made to the system directory for all clients. Now for the complication, we have multiple environments that we use for a CI development system. We currently have a production environment, client

Combining multiple repositories of multiple projects into a single repository of an over-arching solution in Visual Studio 2010?

柔情痞子 提交于 2019-12-08 02:27:46
问题 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 also suppose that I started developing both these projects using two different mercurial repositories, (one for each project). Suppose I wanted to combine these two repositories into one repository of the overarching solution of both projects (without losing any of my commit messages). Would this be

Best source code control for a university environment (low overhead to manage repositories)

北城余情 提交于 2019-12-07 09:28:08
问题 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 it as a campus-wide "version-control service", much like universities do with an email service. Specifically, I'm talking about the following peculiarities: There are a large number of new repositories created/managed each semester . Any programming course or research project could require

Multiple maven repositories in one gradle file

别说谁变了你拦得住时间么 提交于 2019-12-04 07:27:09
问题 So my problem is how to add multiple maven repositories to one gradle file. This DOESN’T work: repositories { mavenCentral() maven { url "http://maven.springframework.org/release" url "http://maven.restlet.org" } } 回答1: In short you have to do like this repositories { maven { url "http://maven.springframework.org/release" } maven { url "https://maven.fabric.io/public" } } Detail: You need to specify each maven URL in its own curly braces. Here is what I got working with skeleton dependencies

Multiple maven repositories in one gradle file

微笑、不失礼 提交于 2019-12-02 14:05:16
So my problem is how to add multiple maven repositories to one gradle file. This DOESN’T work: repositories { mavenCentral() maven { url "http://maven.springframework.org/release" url "http://maven.restlet.org" } } In short you have to do like this repositories { maven { url "http://maven.springframework.org/release" } maven { url "https://maven.fabric.io/public" } } Detail: You need to specify each maven URL in its own curly braces. Here is what I got working with skeleton dependencies for the web services project I’m going to build up: apply plugin: 'java' sourceCompatibility = 1.7 version =

Run hg pull over all subdirectories

荒凉一梦 提交于 2019-12-01 05:10:54
问题 How can I update multiple mercurial (hg) repositories from their shared parent's directory? /plugins/search /plugins/overview /plugins/chart I want to change a branch to default one and update them all at once cd /plugins/search hg update -C default hg pull -u 回答1: Run the following from the parent directory, plugins in this case: find . -type d -maxdepth 1 -exec hg update -C default -R {} \; find . -type d -maxdepth 1 -exec hg pull -u -R {} \; To clarify: find . searches the current