1. 26 Feb, 2022 6 commits
    • cli: add `cat-file` command · b8771227
      Introduce a simple command that emulates `git cat-file`.
      Edward Thomson committed
    • cli: support `help <command>` · f8e7d8fd
      Support `help <command>` by re-invoking the command itself with the
      `--help` argument.  This allows us to keep the help logic with the
      commands itself.
      Edward Thomson committed
    • cli: introduce a help command · c6dd82d9
      Add a framework for commands to be defined, and add our first one,
      "help".  When `git2_cli help` is run, the `cmd_help` function will be
      invoked with the remaining command line arguments.  This allows users to
      invoke `git2_cli help foo` to get information about the `foo` subcommand.
      Edward Thomson committed
    • opt: use a custom function to print usage · 8526cbd5
      Our argument parser (https://github.com/ethomson/adopt) includes a
      function to print a usage message based on the allowed options.  Omit
      this and use a cutom function that understands that we have subcommands
      ("checkout", "revert", etc) that each have their own options.
      Edward Thomson committed
    • cli: infrastructure for a cli project · 3a3ab065
      Introduce a command-line interface for libgit2.  The goal is for it to
      be git-compatible.
      
      1. The libgit2 developers can more easily dogfood libgit2 to find bugs,
         and performance issues.
      
      2. There is growing usage of libgit2's examples as a client; libgit2's
         examples should be exactly that - simple code samples that illustrate
         libgit2's usage.  This satisfies that need directly.
      
      3. By producing a client ourselves, we can better understand the needs
         of client creators, possibly producing a shared "middleware" for
         commonly-used pieces of client functionality like interacting with
         external tools.
      
      4. Since git is the reference implementation, we may be able to benefit
         from git's unit tests, running their test suite against our CLI to
         ensure correct behavior.
      
      This commit introduces a simple infrastructure for the CLI.
      
      The CLI is currently links libgit2 statically; this is because the
      utility layer is required for libgit2 _but_ shares the error state
      handling with libgit2 itself.  There's no obviously good solution
      here without introducing annoying indirection or more complexity.
      Until we can untangle that dependency, this is a good step forward.
      
      In the meantime, we link the libgit2 object files, but we do not include
      the (private) libgit2 headers.  This constrains the CLI to the public
      libgit2 interfaces.
      Edward Thomson committed
  2. 23 Feb, 2022 12 commits
  3. 22 Feb, 2022 1 commit
  4. 21 Feb, 2022 4 commits
  5. 18 Feb, 2022 4 commits
  6. 17 Feb, 2022 1 commit
    • xdiff: use xdl_free not free · b722c45d
      We've added a lovely abstraction layer in xdiff so that it can call our
      allocation functions.  But it also needs to call our free functions.  We
      missed some `free` calls in `xmerge.c`.  Update them to use `xdl_free`.
      Without this, we will pass a pointer allocated with a custom allocator
      to the system free function.  💣
      Edward Thomson committed
  7. 14 Feb, 2022 4 commits
  8. 13 Feb, 2022 8 commits