The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
45 views

How to manage few project's codebases in one Assembla repository space?

Yesterday I signed for private free Assembla account. I want to use it to manage few small projects. It seems to me good idea to have only one Assembla repository space for all of my small (php) ...
0
votes
1answer
29 views

SVNSERVE - Do all repositories have to be in same parent folder?

Here is my situation: I have inherited an SVN server (using svnserve only on Win 2008 R2) with a small hard disk and a repository without a specified name. It's path is C:\svn\repos. I would rather ...
0
votes
1answer
18 views

I want to setup lower repository projects from a higher git repository

When I started with GIT, I was unfamiliar with the Project Code and just wanted to get all the code under source code control. The project hierarchy was like this: /Projects/.git # I put the git ...
0
votes
0answers
18 views

Need suggestion for workflow and architecture

for the project i am currently working on we have following needs. need partial mirror of debian repository ( right now done using reprepro) need a repository for our internal packages (planning to ...
1
vote
2answers
62 views

How to combine data from 2 repositories

I have a question concerning combine datas from 2 repositorys in asp / mvc. I have 2 repositories, for example, UserRepo and InvoiceRepo. Now I want to create a query that contains user data and ...
3
votes
1answer
204 views

Understanding the basic naming scheme of the Android source code repository

I just downloaded the full 4.0.1_r1 Android Source Code repository according to the official instructions. Can someone help me understand the repository's basic naming scheme? For example, in the ...
1
vote
1answer
45 views

Importing Subversion repository which is well formed now, but was not well formed before

I would like to import the source code from a Subversion repository to Mercurial. Using Hg Subversion I imported it. The problem is, the layout of the SVN repo is the default one - with trunk ...
0
votes
1answer
55 views

How can I customize SVN revisions?

I would like to know how to customize revision numbering in SVN. I have a repository I am running on an Ubuntu machine. The entire thing is currently just incremental revisions: Current revision 7. I ...
0
votes
0answers
817 views

Custom Repository item in Devexpress xtraGrid control

I used the Devexpress XtraGrid control to add/edit data. However, I couldn't figure out how i can add a custom Calendar control (non-Devexpress) to the XtraGrid's column as a repository control. Is ...
1
vote
2answers
115 views

svn repository layout - opinions needed

All - I have read several posts here about svn repositories layout best practices and unfortunately none of them have helped me decide what route is best for us, so I would like to ask for your ...
0
votes
0answers
72 views

SVN how to handle externals libraries in one central location across multiple projects (and repositories)?

I want to create a library repository of code, if something is in the lib then it will be a) a third party component or b) be internal developed but shared across multiples projects. lib\ JVCL\ ...
3
votes
3answers
278 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, ...
1
vote
1answer
56 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
178 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
114 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 ...
0
votes
1answer
396 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 ...
6
votes
2answers
222 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 ...
2
votes
1answer
254 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 ...
7
votes
1answer
2k 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 ...
2
votes
1answer
255 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 ...
1
vote
0answers
203 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
60 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 ...
8
votes
2answers
1k 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 ...
3
votes
1answer
854 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
437 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
98 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 ...
2
votes
2answers
181 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 { ...
17
votes
5answers
6k 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 ...
1
vote
3answers
217 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 ...
6
votes
7answers
1k 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 ...... ...
3
votes
6answers
936 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. ...
4
votes
5answers
290 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 ...
15
votes
3answers
4k 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 ...
1
vote
1answer
145 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 ...
30
votes
3answers
6k 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 ...
4
votes
4answers
368 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 ...
1
vote
1answer
522 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
769 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 ...