1. 24 Apr, 2012 1 commit
  2. 23 Apr, 2012 1 commit
  3. 21 Apr, 2012 1 commit
  4. 20 Apr, 2012 1 commit
  5. 19 Apr, 2012 2 commits
  6. 16 Apr, 2012 2 commits
  7. 15 Apr, 2012 1 commit
  8. 14 Apr, 2012 4 commits
  9. 13 Apr, 2012 10 commits
  10. 12 Apr, 2012 12 commits
  11. 11 Apr, 2012 5 commits
    • Refactor git_repository_open with new options · 7784bcbb
      Add a new command `git_repository_open_ext` with extended options
      that control how searching for a repository will be done.  The
      existing `git_repository_open` and `git_repository_discover` are
      reimplemented on top of it.  We may want to change the default
      behavior of `git_repository_open` but this commit does not do that.
      
      Improve support for "gitdir" files where the work dir is separate
      from the repo and support for the "separate-git-dir" config.  Also,
      add support for opening repos created with `git-new-workdir` script
      (although I have only confirmed that they can be opened, not that
      all functions work correctly).
      
      There are also a few minor changes that came up:
      
      - Fix `git_path_prettify` to allow in-place prettifying.
      
      - Fix `git_path_root` to support backslashes on Win32.  This fix
        should help many repo open/discover scenarios - it is the one
        function called when opening before prettifying the path.
      
      - Tweak `git_config_get_string` to set the "out" pointer to NULL
        if the config value is not found.  Allows some other cleanup.
      
      - Fix a couple places that should have been calling
        `git_repository_config__weakptr` and were not.
      
      - Fix `cl_git_sandbox_init` clar helper to support bare repos.
      Russell Belfer committed
    • status: Remove status_old · 64b402f8
      This is Git yo. You can fetch stuff from the history if you need it.
      Vicent Martí committed
    • tests: Remove unused file · e1f6f94a
      Vicent Martí committed