About 50 results
Open links in new tab
  1. What is the difference between DAO and Repository patterns?

    Dec 18, 2011 · A Repository IS a Dao, since it allows you to access/persist data, but the repository has a more precise definition based on simulating interaction with a collection of data. This definition and …

  2. repository - git: how to rename a branch (both local and remote ...

    I have a local branch master that points to a remote branch origin/regacy (oops, typo!). How do I rename the remote branch to origin/legacy or origin/master? I tried: git remote rename regacy legac...

  3. How do I push a new local branch to a remote Git repository and track ...

    May 4, 2010 · Create a local branch based on some other (remote or local) branch: git checkout -b branchname Push the local branch to the remote repository (publish), but make it trackable so git pull …

  4. Difference between repository and service? - Stack Overflow

    What's the difference between a repository and a service? I don't seem to grasp it. I'm talking about data access through a data access layer, typically with linq to sql. Very often i see repositor...

  5. Reset local repository branch to be just like remote repository HEAD

    Oct 27, 2009 · If you want to reset a local repository to be EXACTLY like the remote, you can do the following: # Reset all tracked files to match the remote branch git reset --hard origin/main #replace …

  6. How is repository different from workspace? - Stack Overflow

    Dec 22, 2019 · The repository is essentially the .git hidden folder inside the working directory (workspace). The working directory (workspace) is essentially your project folder. Keep in mind these …

  7. How do I delete a local repository in Git? - Stack Overflow

    Oct 3, 2009 · Delete the .git directory in the root-directory of your repository if you only want to delete the git-related information (branches, versions). If you want to delete everything (git-data, code, etc), just …

  8. Download a single folder or directory from a GitHub repository

    How can I download only a specific folder or directory from a remote Git repository hosted on GitHub? Say the example GitHub repository lives here: [email protected]:foobar/Test.git Its directory str...

  9. How to correct `git` reporting `detected dubious ownership in ...

    Aug 25, 2022 · How to correct `git` reporting `detected dubious ownership in repository` without adding `safe.directory` when using WSL? Asked 3 years, 3 months ago Modified 7 months ago Viewed 200k …

  10. What is a IRepository and what is it used for? - Stack Overflow

    Dec 24, 2010 · Under the hood the repository may be linked to a database, a flat file, an in-memory collection of objects, or whatever else you may imagine. The user of a repository doesn't care. So an …