1. 02 Jun, 2021 1 commit
    • Support authentication in push example · 7ed00c5c
      This adds basic support for user/password and SSH authentication to the
      push example. Authentication is implemented by using the cred_acquire_cb
      credential callback defined in examples/common.c.
      
      Co-authored-by: Marius Knaust <marius.knaust@gmail.com>
      Patrick Lühne committed
  2. 31 May, 2021 1 commit
  3. 27 May, 2021 1 commit
  4. 19 May, 2021 1 commit
  5. 18 May, 2021 4 commits
  6. 16 May, 2021 5 commits
  7. 13 May, 2021 3 commits
  8. 12 May, 2021 2 commits
  9. 11 May, 2021 4 commits
  10. 06 May, 2021 8 commits
  11. 05 May, 2021 4 commits
  12. 04 May, 2021 2 commits
  13. 02 May, 2021 1 commit
  14. 01 May, 2021 1 commit
  15. 28 Apr, 2021 2 commits
    • repo: validate repository paths · c15ed350
      Ensure that a repository's path (at initialization or open time) is
      valid.  On Windows systems, this means that the longest known path
      beneath the repository will fit within MAX_PATH: this is a lock file for
      a loose object within the repository itself.
      
      Other paths, like a very long loose reference, may fail to be opened
      after the repository is opened.  These variable length paths will be
      checked when they are accessed themselves.  This new functionality is
      done at open to prevent needlessly checking every file in the gitdir
      (eg, `MERGE_HEAD`) for its length when we could instead check once at
      repository open time.
      Edward Thomson committed