tagged [repository]

Repository Pattern Step by Step Explanation

Repository Pattern Step by Step Explanation Can someone please explain to me the Repository Pattern in .NET, step by step giving a very simple example or demo. I know this is a very common question bu...

Git: Merge a Remote branch locally

Git: Merge a Remote branch locally I've pulled all remote branches via `git fetch --all`. I can see the branch I'd like to merge via `git branch -a` as remotes/origin/branchname. Problem is it is not ...

23 Jul at 11:4

Delete last commit in bitbucket

Delete last commit in bitbucket I made a mistake and I don't know how to delete my latest push in the repository. I pull the latest updates of the app but it has conflicts and I push it to repository....

12 Feb at 16:7

Git: add vs push vs commit

Git: add vs push vs commit What is the difference between git `add`, `push` and `commit`? Just a little confused coming from SVN, where "update" will 'add' stuff, and commit does a "push" and will 'ad...

23 Apr at 18:0

How to manually deploy artifacts in Nexus Repository Manager OSS 3

How to manually deploy artifacts in Nexus Repository Manager OSS 3 After installing Nexus Repository Manager OSS 3 I do not see option `Artifact Upload` to upload artifacts through web page. In Nexus ...

24 Mar at 17:36

what is the Alternate for AddorUpdate method in EF Core?

what is the Alternate for AddorUpdate method in EF Core? I want to achieve the ADDorUpdate() method in Generic repository using EF Core like below? Can anyone help me? ``` public virtual void AddOrUpd...

Attaching VisualSVN Server to an existing repository

Attaching VisualSVN Server to an existing repository All the recent VisualSVN Server posts made me want to check it out. I have SVN running right now through Apache, but I'd like to try out VisualSVN ...

How do I push a new local branch to a remote Git repository and track it too?

How do I push a new local branch to a remote Git repository and track it too? How do I: 1. Create a local branch from another branch (via git branch or git checkout -b). 2. Push the local branch to th...

Remove a file from a Git repository without deleting it from the local filesystem

Remove a file from a Git repository without deleting it from the local filesystem I want to remove a file from my repository. will remove the file from the repository, but it will also remove the file...

Moving Git repository content to another repository preserving history

Moving Git repository content to another repository preserving history I am trying to move only the contents of one repository (`repo1`) to another existing repository (`repo2`) using the following co...

27 Jan at 05:36