1. 01 Dec, 2018 1 commit
  2. 13 Jul, 2018 1 commit
    • treewide: remove use of C++ style comments · 9994cd3f
      C++ style comment ("//") are not specified by the ISO C90 standard and
      thus do not conform to it. While libgit2 aims to conform to C90, we did
      not enforce it until now, which is why quite a lot of these
      non-conforming comments have snuck into our codebase. Do a tree-wide
      conversion of all C++ style comments to the supported C style comments
      to allow us enforcing strict C90 compliance in a later commit.
      Patrick Steinhardt committed
  3. 29 Jun, 2018 1 commit
  4. 10 Jun, 2018 1 commit
  5. 28 Jul, 2017 1 commit
    • tests: rebase::submodule: verify initialization method calls · c0558c62
      Some return codes for functions which may fail are not being checked in
      `test_rebase_submodule__initialize`. This may lead us to not notice
      errors when initializing the environment and would possibly result in
      either memory corruption or segfaults as soon as any of the
      initialization steps fails. Fix this by wrapping these function calls
      into `cl_git_pass`.
      Patrick Steinhardt committed
  6. 25 Jul, 2017 1 commit
  7. 03 Mar, 2017 1 commit
    • rebase: ignore untracked files in submodules · 2270ca9f
      An untracked file in a submodule should not prevent a rebase from
      starting.  Even if the submodule's SHA is changed, and that file would
      conflict with a new tracked file, it's still OK to start the rebase
      and discover the conflict later.
      
      Signed-off-by: David Turner <dturner@twosigma.com>
      David Turner committed