Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
3answers
4k views

Mercurial with multiple projects

I have a couple of projects with different release cycles sitting in my svn repository. Releases are created by using the classic tags structure in svn. When there are bugs to fix in releases a branch ...
12
votes
5answers
2k views

Subversion Repository Layout

Most subversion tools create a default repository layout with /trunk, /branches and /tags. The documentation also recommends not using separate repositories for each project, so that code can be more ...
11
votes
3answers
2k views

Repository Pattern Best Practice

So I'm implementing the repository pattern in an application and came across two "issues" in my understanding of the pattern: Querying - I've read responses that IQueryable should not be used when ...
6
votes
2answers
81 views

“Layering” git repository

I'm using git on a daily basis for a while now, and this time I've run into a problem which I could describe like this. I have a repository which holds entire website structure, and web root is in ...
5
votes
1answer
340 views

How to synchronize Git Repositories across 2 Servers

I'm looking for a way to automatically synchronize Git repositories across (2) servers so they are interchangeable from a third point. Situation is as follows: We heavily use git for all our ...
4
votes
1answer
519 views

Best Practice for Git Repositories with multiple projects in traditional n-tier design

I'm making the switch from a centralized SCM system to GIT. OK, I'll admit which one, it is Visual SourceSafe. So in addition to getting over the learning curve of Git commands and workflow, the ...
4
votes
7answers
728 views

SVN Repository Structure

I am getting ready to set up an SVN repository, and was wondering if anyone had a good example for a repo structure. I am currently thinking: Development .. Applications .... App1 ...... ...
4
votes
5answers
237 views

Handling relations between multiple subversion projects

In my company we are using one SVN repository to hold our C++ code. The code base is composed from a common part (infrastructure and applications), and client projects (developed as plugins). The ...
4
votes
4answers
344 views

When to separate certain entities into different repositories?

I generally try and keep all related entities in the same repository. The following are entities that have a relationship between the two (marked with indentation): User UserPreference So they ...
3
votes
3answers
127 views

Dependency Inject for models

I'm sure someone has asked this before, but I'm struggling to find where. I'm using Ninject to remove dependencies from my controllers, along with a repository design pattern. As I understand it, ...
3
votes
1answer
566 views

Setting up a project directory structure for git repo of a website

I'm working on a drupal website. I've been keeping an svn repository of my custom modules which I've recently ported to github to work with another developer. Coming from SVN I'm used to just being ...
3
votes
2answers
245 views

How do I access svn branches using git-svn with a non-standard svn repo layout?

The standard repo layout in svn is as follows. /trunk /branches featureX featureY /tags 1.0 2.0 The repository I'm working with is a much flatter structure. trunk featureX featureY ...
3
votes
2answers
88 views

Changing a file tree in tortoisesvn

We have a subversion repository which was set up without using the standard \trunk \tags \branch layout and now after a couple of years we are looking to rectify this. We use tortoiseSVN. Our current ...
3
votes
6answers
284 views

svn: module organization early in the development process

OK, I understand the trunk/tags/branches thingy for a repository with a single project. Now let's say I have a main project and a number of smaller auxiliary modules/ plugins / tools / scripts etc. ...
2
votes
1answer
177 views

Mercurial: repository layout for multi-customer project

We have this webapp product being deployed for multiple customers and think about switching from svn to mercurial. In svn, we see the trunk as our projects 'core', while branches are setup for each ...
2
votes
1answer
153 views

How to model a storage repository which provides intelligent REST based access

I am looking for a unique way to query the following use cases in a REST fashion:- Assuming the repository contains the following:- a. green color ball image of 1cm radius b. yellow color ball image ...
2
votes
2answers
140 views

What's the correct way of accessing reference data in this Domain Data Modelling scenario?

Initial Warning: Long post and I might have got the pattern totally wrong anyway: Given the following class which is the start of the Customer Aggregate: public class Customer : KeyedObject { ...
1
vote
1answer
34 views

Are there any caveats of using a git repository inside another git repository? Is it considered as a good practice?

(I know there are some similar questions but I think none apply exactly to this one, so I decided to ask it.) I never did repository nesting myself, but I'm in a situation that it would become handy. ...
1
vote
3answers
51 views

How to move up a bazaar repository one hierarchy level up?

I have a project hierarchy like this, with a bazaar repository that has been created in subFolder_1. a_folder +-- subFolder_1 +-- .bzr +-- ... (more content) +-- subFolder_2 ...
1
vote
1answer
75 views

how to organise and maintain mercurial repository

At the moment I have 5 differently branded products with almost the same codebase (the differences are brand related) and all those products live in the separated mercurial branches. Bug fixing and ...
1
vote
0answers
146 views

Mercurial repository structure for VC++ Directories

I'm in the process of moving our old C/C++ codebase to Mercurial. I'm a bit unclear as to how the repository structure optimally (or at least near optimally) should look like, since the examples I've ...
1
vote
1answer
47 views

Where should my security logic go?

Let's say I have an ASP.NET MVC webapp that calls a repository layer, which is built on top of nHibernate. The controller passes the repository an ISecurityToken that encapsulates the current user's ...
1
vote
3answers
187 views

How should I lay out my repository?

I'm moving an application out of an svn repository it shares with a bunch of other stuff into its own, brand new one. So, I have a chance to make a fresh start with layout. The app itself has two ...
1
vote
1answer
117 views

Repository structure when having two “configs” of the same base repo?

So I'm having a bit of a structure problem with my repositories. I hope you guys can give me a few pointers on how to go forward with this. Setup; I have one large web project, with several ...
1
vote
1answer
357 views

How to update created and modified fields using the repository design pattern?

I am currently working on my first asp.net mvc application. I am trying to drink the kool-aid of all the the sample projects I see and trying to use the repository design pattern. I have a interface ...
1
vote
1answer
659 views

Source Control for multiple projects/solutions with shared libraries

I am currently working on a project to convert a number of Excel VBA powered workbooks to VSTO solutions. All of the workbooks will share a number of class libraries and third party assemblies, in ...
0
votes
1answer
235 views

What is the best strategy for calling Stored procedure in MVC?

I am using repository pattern in ASP.NET MVC3. I am extracting data through a stored procedure. Should I create a different repository for each stored procedure or just create a single REPOSITORY ...