1. 10 Oct, 2012 4 commits
  2. 09 Oct, 2012 13 commits
  3. 08 Oct, 2012 7 commits
  4. 07 Oct, 2012 15 commits
  5. 05 Oct, 2012 1 commit
    • Diff: Do not try to calculate an oid for a GITLINK. · 1dca8510
      We don't have anything useful that we could do with that oid anyway (We
      need to query the submodule for the HEAD commit instead).
      
      Without this, the following code creates the error "Failed to read
      descriptor: Is a directory" when run against the submod2 test-case:
      
          const char* oidstr = "873585b94bdeabccea991ea5e3ec1a277895b698";
          git_tree* tree = resolve_commit_oid_to_tree(g_repo, oidstr);
          git_diff_list* diff = NULL;
          cl_assert(tree);
          cl_git_pass(git_diff_workdir_to_tree(g_repo, NULL, tree, &diff));
      Sascha Cunz committed