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 …

  2. 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: git@github.com:foobar/Test.git Its …

  3. 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 …

  4. git - Project vs Repository in GitHub - Stack Overflow

    Nov 9, 2016 · A Repository as documented on GitHub: A repository is the most basic element of GitHub. They're easiest to imagine as a project's folder. A repository contains all of the project …

  5. 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 …

  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 …

  7. 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, 5 months ago Modified 9 months …

  8. 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 …

  9. 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 …

  10. How to determine the URL that a local Git repository was originally ...

    Oct 10, 2015 · I pulled a project with several forks on GitHub, but forgot which fork it was. How do I determine which fork I pulled?