An object that transfers data between the business layer of an application and its data store. It appears to the developer-user as a factory that generates objects or collections in response to queries. Updated objects and collections can be passed back to the repository for persistence to the data store.

learn more… | top users | synonyms

75
votes
9answers
8k views

How do you organize your version control repository?

First, I know about this: http://stackoverflow.com/questions/51217/how-would-you-organize-a-subversion-repository-for-in-house-software-projects Next, the actual question: My team is restructuring our ...
61
votes
6answers
17k views

Git: Convert normal to bare repository

How can I convert a 'normal' Git repository to a bare one? The main difference seems to be: in the normal git repository you have a .git folder inside the repository containing all relevant data ...
49
votes
5answers
21k views

How to move a single folder from one Subversion repository to another repository?

I have a "docs" folder in a Subversion repository named "project". I've come to the conclusion that it should really be kept under a separate Subversion repository named "project_docs". I'd like to ...
37
votes
11answers
3k views

Multiple SVN Repositories or single company repository

Should we have one single repository for all the company, which contains many development projects, or a repository per project? Any ideas on experience / best practice?
26
votes
4answers
25k views

Find Oracle JDBC driver in Maven repository

I want to add the oracle jdbc driver to my project as dependency (runtime scope) - ojdbc14. In MVNrepository site the dependency to put in the POM is: <dependency> ...
23
votes
4answers
9k views

Mercurial push, abort: authorization failed

I'm having problems with pushing to mercurial repository: $ hg push pushing to https://user:***@hg.domain.com/X_repo searching for changes abort: authorization failed The same URL (with the same ...
23
votes
2answers
7k views

Merge changes from remote github repository to your local repository

I have forked a repository on github some time ago, made a small change and pushed the change back to my github fork. The original repository has changed since. I would like to merge the changes from ...
23
votes
8answers
7k views

SVN performance after many revisions

My project is currently using a svn repository which gains several hundred new revisions per day. The repository resides on a Win2k3-server and is served through Apache/mod_dav_svn. I now fear that ...
21
votes
4answers
10k views

How can I get Maven to stop attempting to check for updates for artifacts from a certain group from maven-central-repo?

I'm working on a fairly big Maven project. We have probably around 70 or so individual artifacts, which are roughly split into two libraries of shared code and maybe ten applications which use them. ...
21
votes
15answers
9k views

Svn repository split problem

I want to split a directory from a large Subversion repository to a repository of its own, and keep the history of the files in that directory. I tried the regular way of doing it first svnadmin ...
20
votes
5answers
8k views

In what maven2 repository can Google Guice be found?

As far as I understand Google Guice 2.0 is out not so long ago. But I see that central repo still has outdated 1.0 version. Please, tell where can I find maven2 repository with Google Guice 2.0.
17
votes
4answers
9k views

Why use AsQueryable() instead of List()

I'm getting into using the Repository Pattern for data access with the Entity Framework and LINQ as the underpinning of implementation of the non-Test Repository. Most samples I see return ...
17
votes
8answers
4k views

SVN hooks for windows

I did a little googling and found that there isn't really a resource of SVN hooks for Windows. So I figured I'd start a wiki here to centralize it. If you contribute. Please be sure to indicate: ...
16
votes
3answers
478 views

How does a service layer fit into my repository implementation?

I have created a POCO model class and a repository class which handles persistence. Since the POCO cannot access the repository, there are lots of business logic tasks in the repository which doesn't ...
15
votes
1answer
2k views

Generic repository - IRepository<T> or IRepository

I have seen two different approaches for creating generic repositories. What are differences between those two approaches (pros and cons) ? Please diregard difference in the methods because I am ...
15
votes
4answers
3k views

How can I write a clean Repository without exposing IQueryable to the rest of my application?

So, I've read all the Q&A's here on SO regarding the subject of whether or not to expose IQueryable to the rest of your project or not (see here, and here), and I've ultimately decided that I ...
14
votes
1answer
451 views

Repository and Data Mapper pattern

After a lots of read about Repository and Data Mapper I decided to implement those patterns in a test project. Since I'm new to these I'd like to get your views about how did I implement those in a ...
14
votes
4answers
3k views

How can I uncommit the last commit in a git bare repository?

Taking into consideration that there are several git commands that make no sense in a bare repository (because bare repositories don't use indexes and do not have a working directory), git reset ...
14
votes
2answers
2k views

git rollback single file

I'm currently in branch 'foo'. I just ran git merge master. Only problem is there was a certain file in foo that I wanted to keep. Is there a way to get it back but keep all the other changes from ...
14
votes
7answers
2k views

Tips for maintaining an internal Maven Repository?

I'm interested in maintaining a Maven 2 repository for my organization. What are the some of the pointers and pitfalls that would help. What are guidelines for users to follow when setting up ...
13
votes
6answers
1k views

How can I index our internal source code?

Google Code Search has indexed Subversion and Mercurial repositories, so people can search open source projects. How can I do the same for my company's repository with the least effort and without ...
12
votes
4answers
202 views

How to Manage a dataset together with an application?

The application's code and configuration files are maintained in a code repository. But sometimes, as a part of the project, I also have a some data (which in some cases can be >100MB, >1GB or so), ...
12
votes
6answers
4k views

How exactly does subversion store files in the repository?

I read the subversion book and it is clear to me that subversion does not store individual files but only deltas in order to minimize disk space. Subversion also does the same with binary files as ...
12
votes
12answers
687 views

List of Top Repositories by Programming Language

One of the main reasons I like Perl is CPAN (Comprehensive Perl Archive Network) is the ease of finding, installing, and testing of packages it provides that solve a problem I was already trying to ...
11
votes
3answers
3k views

ASP.NET MVC / EF4 / POCO / Repository - How to Update Relationships?

I have a 1..* relationship between Review and Recommendations. The relevant portion of my model (which is also the POCO mapped by EF4): public class Review { public ...
11
votes
1answer
3k views

java.net maven repo - JMS artifact missing

I just created a new Maven project using the default archetype and added the following dependency to my POM file. <dependencies> <dependency> ...
11
votes
4answers
278 views

BestPractices: Is it acceptable to use more than one repository in a MVC-Controller?

I have a many-to-many assocition between an Employee and a Team. Foreach entity I have a repository. Now I use ASP.NET MVC and I created a EmployeeController. I also created a View to edit an ...
11
votes
7answers
433 views

What are Git and Subversion all about?

I see a lot of sites referring to git, github, svn, subversion etc, but I never really knew what all of those things are. I also hear a lot of terms like 'svn repo', 'commit', and 'push' - I tried ...
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 ...
11
votes
7answers
3k views

How can a SVN repository become corrupt?

A few times already, I got into situations where one of my SVN repository got corrupt and we could do anything with some versions or branches of the project without really knowing what we did. So I'm ...
11
votes
5answers
2k views

What are some good powershell script repositories?

I know of a couple, and I've seen several blogs which include scripts sporadically, but I was wondering if there were any other good places to look. http://powershell.com/cs/media/13/default.aspx ...
11
votes
2answers
1k views

Subversion repository layout for libraries developed across different programs

I'm responsible for several (rather small) programs, which share a lot of code via different libraries. I'm wondering what the best repository layout is to develop the different prorgrams (and ...
10
votes
2answers
713 views

How can I add remote repositories in Mercurial?

I am working with Git repositories in the following way: I have the master repository and several remotes on the different production machines. I am pushing the production code to the remotes and ...
10
votes
5answers
1k views

Gradle: Make a 3rd party jar available to local gradle repository

currently, I'm testing Gradle as an alternative to Maven. In my projects, there are some 3rd party jars, which aren't available in any (Maven) repositories. My problem is now, how could I manage it to ...
10
votes
2answers
13k views

SVN Synchronize vs Update to Head (subclipse)

I'm fairly new to both Subversion and Subclipse and am seeing some issues that lead me to believe there is a difference between updating to head, and synchronizing. Specifically I find that when I try ...
10
votes
3answers
1k views

What is the best way to organize multiple projects when using git

I have 5-10 independent projects that I want place under version control using Git. What is the best way to organize the projects/respositories: Use one repository for each project use one ...
10
votes
4answers
5k views

How to modify repository settings in Redmine?

It might sound like a dumb question but I can't for the life of me find the answer to this one. We have a project set up in Redmine, linked to a SVN repository. Everything is working fine, but we ...
9
votes
2answers
5k views

Git error: src refspec master does not match any

I need to created a repo named carboncake I tried this cloned the gitosis-admin repository to my local machine $ git clone gitosis@myserver.net:repositories/gitosis-admin.git $ cd gitosis-admin $ ...
9
votes
2answers
815 views

How do I make a Git commit in the past?

I'm converting everything over to Git for my own personal use and I found some old versions of a file already in the repository. How do I commit it to the history in the correct order according the ...
9
votes
5answers
356 views

Is there a library repository for C? [closed]

Possible Duplicate: Why there is not a comprehensive c archive network? Everyone knows that C is very small language, it has just language primitives and almost no standard library (no data ...
9
votes
4answers
816 views

gitosis: same user multiple machines

In git/gitosis a single ssh key is stored with the filename the same as user name. i.e. myusername.pub If I want to access a repository from many machines, must I make a new user from each location ...
9
votes
12answers
757 views

Unit testing, mocking - simple case: Service - Repository

Consider a following chunk of service: public class ProductService : IProductService { private IProductRepository _productRepository; // Some initlization stuff public Product ...
9
votes
4answers
4k views

How do I stop Maven 2.x from trying to retrieve non-existent pom.xml files for dependencies every build?

In my project, there are a number of dependencies that are transitively included from other dependencies that do not have pom.xml files available in any of our corporate repositories. These are ...
9
votes
3answers
1k views

Codaset, Codebasehq, Unfuddle, Trac or Redmine? [closed]

I have a handful of small Git repositories I would like to host remotely. They're all private projects, most of them in Java. Codaset, Codebasehq, Unfuddle, Trac, Redmine.. There seems to be an ...
9
votes
4answers
1k views

Loading Subrecords in the Repository Pattern

Using LINQ TO SQL as the underpinning of a Repository-based solution. My implementation is as follows: IRepository FindAll FindByID Insert Update Delete Then I have extension methods that are ...
9
votes
8answers
3k views

SVN: one working copy, two repositories?

I'd like to know how can I set two repositories for my one working copy. I need one repository in my server, so that I can check in/out between two pcs; I need another repository in my local pc, so ...
9
votes
3answers
5k views

Git repository with multiple users on Ubuntu

I have an existing bare git repository located in /home/myaccount/git/project. I am currently using it over ssh from my local machine without any problems. I want to add a second user on the server ...
8
votes
4answers
2k views

Repository pattern with Entity framework

Repository pattern is used to abstract from particular database and object-relation-mapping technology(like EF) used. So I can easily replace (for example) my Entity framework mappings with Linq to ...
8
votes
2answers
351 views

In a DDD approach, is this example modelled correctly?

Just created an acc on SO to ask this :) Assuming this simplified example: building a web application to manage projects... The application has the following requirements/rules. 1) Users should be ...
8
votes
2answers
276 views

git: Simple solution for pushing between working copies

What I want to do: On my (ssh remotely accessible) university machine I work on a project which I have put under git source control (git init, then git commit -a after every change, all works fine). ...

1 2 3 4 5 31