tagged [repository]

Change old commit message using `git rebase`

Change old commit message using `git rebase` I was trying to edit an old commit message as explained [here](http://schacon.github.io/history.html). The thing is that now, when I try to run `rebase -i ...

29 Oct at 10:29

How do you get the Git repository's name in some Git repository?

How do you get the Git repository's name in some Git repository? When you are working in some Git directory, how can you get the Git repository name in some Git repository? Are there any Git commands?...

17 Jul at 12:28

how to switch from svn to bzr for working locally

how to switch from svn to bzr for working locally i have imported(checkout) some read-only repository on the Internet now i want to work on this read-only (also i have better experience with bzr than ...

27 Aug at 14:6

AutoMapper.Map ignore all Null value properties from source object

AutoMapper.Map ignore all Null value properties from source object I'm trying to map 2 objects of the same type. What I want to do is AutoMapper to igonore all the properties, that have `Null` value i...

20 Sep at 13:49

Pros and cons of having static repositories in ASP.NET MVC application

Pros and cons of having static repositories in ASP.NET MVC application What are the pros and cons of using static repositories in an ASP.NET MVC application? Wouldn't it be better to have all the meth...

Repository Design: Sharing a transaction

Repository Design: Sharing a transaction I am implementing a Rest service using ServiceStack. We use the repository pattern and auto-wire repositories into services via IOC. Currently, we have a naive...

How to convert a normal Git repository to a bare one?

How to convert a normal Git repository to a bare one? 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` fold...

How do I rename a repository on GitHub?

How do I rename a repository on GitHub? I wanted to rename one of my repositories on GitHub, but I got scared when a big red warning said: > 1. We will not set up any redirects from the old location 2...

3 Mar at 23:40

Should I abstract the validation framework from Domain layer?

Should I abstract the validation framework from Domain layer? I am using FluentValidation to validate my service operations. My code looks like: UserValidator i

How do I hotcopy a SVN Repository to an existing location?

How do I hotcopy a SVN Repository to an existing location? I am trying to automatically backup my SVN Repository. This is in a batch file I wrote: It works great the first time. However, each time aft...

7 Jan at 02:26

Where can I find UML diagrams (instead of reinventing the wheel)?

Where can I find UML diagrams (instead of reinventing the wheel)? I am currently trying to draw a set of UML diagrams to represent products, offers, orders, deliveries and payments. These diagrams hav...

Transfer git repositories from GitLab to GitHub - can we, how to and pitfalls (if any)?

Transfer git repositories from GitLab to GitHub - can we, how to and pitfalls (if any)? Can one transfer repositories from GitLab to GitHub if the need be. If so, how exactly can I go about doing the ...

8 Mar at 06:47

Untrack files from git temporarily

Untrack files from git temporarily I have setup a local git on my machine. When I initialized git, I added pre-compiled libs and binaries. However, now during my development I don't want to check in t...

30 Jun at 05:47

How do I make a Git commit in the past?

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 histo...

How to trust a apt repository : Debian apt-get update error public key is not available: NO_PUBKEY <id>

How to trust a apt repository : Debian apt-get update error public key is not available: NO_PUBKEY Trying to update some repositories on Debian Etch installation and getting the following errors from ...

1 Nov at 12:35

Defining many-to-many relationships in DDD

Defining many-to-many relationships in DDD Are many-to-many table structures defined as Value Objects in DDD? What if my many-to-many structure has a unique id? Also, what about 1-to-many relationship...

Using Repo with Msysgit

Using Repo with Msysgit When following the [Android Open Source Project instructions on installing repo](http://source.android.com/download/using-repo) for use with `Git`, after running the `repo init...

6 May at 10:26

Loading Subrecords in the Repository Pattern

Loading Subrecords in the Repository Pattern Using LINQ TO SQL as the underpinning of a Repository-based solution. My implementation is as follows: IRepository Then I have extension methods that are u...

Transactions in the Repository Pattern using ServiceStack.ORMLite

Transactions in the Repository Pattern using ServiceStack.ORMLite I'm implementing Repository Pattern using ServiceStack.ORMLite like this: ``` public class MyRepository : IMyRepository { private ID...

Best practices of implementing unit of work and repository pattern using ServiceStack.ORMLite

Best practices of implementing unit of work and repository pattern using ServiceStack.ORMLite Supposing that there are two repository interface : And an IUnitOfWork interface like : what

Examples of Repository Pattern with consuming an external REST web service via HttpClient?

Examples of Repository Pattern with consuming an external REST web service via HttpClient? I've searched around quite a bit, but haven't found any good examples of consuming an external REST web servi...

How many types should be implementing the Repository pattern?

How many types should be implementing the Repository pattern? I am trying to use the repository pattern in an instance of storing pictures. What I do is save the actual pics in a directory on disk bu...

Unit Testing and Entity Framework

Unit Testing and Entity Framework I am very new to EF, I want to know what is the best way of creating EF with SQL Server database. After that I want to test CRUD operations. Is EF implemented in a TD...

Can I arrange repositories into folders on Github?

Can I arrange repositories into folders on Github? I am new to git and what I am doing now is to upload all my recent projects as repositories to github. There are a lot of different projects like web...

24 Jan at 18:4

How to connect local folder to Git repository and start making changes on branches?

How to connect local folder to Git repository and start making changes on branches? I'm new to source control; in the past, I've manually backed up copies of files and made changes on clones then tran...