I work at an in-house IT department for company running 10 or so only shops of varying complexity. The shops code has been written over the last 8 years, each shop a new branch growing father and father away from the stem (I guess that makes it a bush?)
The need for more and more complex discounts, campaigns and user monitoring are grow...
I would put under version control a big amount of data, i.e. a directory structure (with depth<=5) with hundreds files with size about 500Mb).
The things I need is a system that help me:
- to detect if an files has been changed
- to detect if files were added/removed
- to clone the entire repository in another location
- to store a ...
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
...... trunk
...... branches
...... tags
.. Database
.. Third Party
While this structure could probably hold everything we need, I would l...
I have created an SVN repository for project but now realise that the files initially imported are not the most recent.
When I compare the 2 versions of the project with Beyond Compare, the projects do not have the exact same set of files within them. Both project folders have some files which are unique.
I want to now add the correct ...
I deleted a repository from archiva but I only deleted the configuration and not the contents. When I'm ready to delete the contents, what's the best way to do so?
...
I'm wondering what the recommended approach is for dealing with relational data with the IRepository pattern.
My database has the following tables with column names in parenthesis:
Plans (PlanId, Name, CreationDate,
ModifiedDate, ViewId)
Areas (AreaId, Name, nTop, nLeft,
nRight, nBottom)
Views (ViewId, nTop, nLeft, nRight,
nBottom)
P...
Somebody is planning to move the subversion repository I work on (8000+ commits).
Is there a way to use git-svn to replay the last, say, 20 commits from the old location once the migration is finished?
(not only my own commits, but also other team members)
Bonus question: How do I add multiple svn repositories to my git local copy?
...
where can i find the latest Repository.tt template?
Is the latest one here: http://blog.wekeroad.com/blog/subsonic-3-0-repository-template-update/ - November 2008?
I can't seem to find the repository.tt file on github. I'm using the latest linq templates. I've read that the repository class is generated from the default templates. I ca...
Hi All,
I have a bit of a predicament. Basically I have a local "master" git repository. Every few hours, I 'git push' my changes to a server from which I then pull to my client machines. Well, being the genius I am, I accidentally used GITK to roll back my local "master" repository one version too far.
What are the steps to pull th...
One thing that keeps stumping me, and I do not see much mention of it in books/blogs, is how to handle DB operations in a system that really don't fall under the jurisdiction of DAOs or Repositories. I like using the approach of generic DAOs/Repositories to handle common DB operations, but what about dealing with things that aren't entit...
I have seen unit of work pattern implemented with something like a following code:
private HashSet<object> _newEntities = new HashSet<object>();
private HashSet<object> _updatedEntities = new HashSet<object>();
private HashSet<object> _deletedEntities = new HashSet<object>();
and then there are methods for adding entities ...
Hi, i was wondering if i right click on a file in the SVN repo browser, does it get permanently deleted? can it be recovered?
Thanks.
...
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 interested in difference between
public interface IRepository<T> where T : class
and
public interface IRepository : IDisposable
Is th...
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 abundance of solutions out there. They're all packed with features and useful functionality.
Putting aside pricing and the glossy layouts, what...
I am just at the brink of going "Ah HA!" when it comes to coding Domain Driven Design. The question is How and where to define a MVC ActionMethod parameter class that involves an entity, a value object, and a few extra fields? The entity and value object classes are defined in my repository.
Do I:
Create a custom class in the reposi...
I am trying to set up Ankhsvn 2.1.7444.278 with Subversion 1.5.0 on both VS08 and VS2010.B2.
When supplying Ankhsvn with repository url, it recognises the url and allow me to select my repository. The repository is empty (since I haven't put anything into it yet). When I click OK and after applying a log-entry, it return with the error ...
I'm familiar with the standard repository, which has an interface resembling:
public interface IRepository<T>
{
IEnumerable<T> All();
T GetByID(int id);
//etc...
}
My problem involves attempting to implement this pattern within Silverlight which restricts remote data access to async calls (which ...
So, the object model is rather complex and hierarchical.
Grandfather accepts is created by a GrandfatherFactory that accepts a GrandfatherRepository in it's constructor.
All is well.
Now when Grandfather needs to load it's Children how does it do it?
How does it know about the ChildFactory and ChildRepository? It shouldn't correct?
...
Hi,
I was trying to edit an old commit message as explained here.
The thing is that now, when I try to run rebase -i HEAD~5 it says interactive rebase already started.
So then I try: git rebase --continue but got this error:
error: Ref refs/heads/master is at 7c1645b447a8ea86ee143dd08400710c419b945b but expected c7577b53d05c91026b99...
I am running into a maven problem that's killing all my hairs.
So at the beginning all my maven project works fine. And then when I switched to a new computer today and trying to compile them all.
The first error I see from Eclipse is IO error reading jar files from the local maven repository. Then I googled and someone suggested thi...