1-repo.txt 928 B

12345678910111213141516171819202122232425262728
  1. The Repository
  2. ==============
  3. After this introduction, let's start directly with code::
  4. >>> from dulwich.repo import Repo
  5. The access to a repository is through the Repo object. You can open an
  6. existing repository or you can create a new one. There are two types of Git
  7. repositories:
  8. Regular Repositories -- They are the ones you create using ``git init`` and
  9. you daily use. They contain a ``.git`` folder.
  10. Bare Repositories -- There is not ".git" folder. The top-level folder
  11. contains itself the "branches", "hooks"... folders. These are used for
  12. published repositories (mirrors). They do not have a working tree.
  13. Let's create a folder and turn it into a repository, like ``git init`` would::
  14. >>> from os import mkdir
  15. >>> mkdir("myrepo")
  16. >>> repo = Repo.init("myrepo")
  17. >>> repo
  18. <Repo at 'myrepo'>
  19. You can already look a the structure of the "myrepo/.git" folder, though it
  20. is mostly empty for now.