Interface GitNotes


public interface GitNotes
Decision gate for choosing what git notes subcommand will be executed when the builder is created.
  • Method Details

    • add

      @Nonnull GitNotesAddBuilder add(@Nonnull String object)
      Parameters:
      object - the object (identified by name or hash) of the object to apply the note to
      Returns:
      a builder to add a new note to the specified object
    • remove

      @Nonnull GitNotesRemoveBuilder remove(@Nonnull String object)
      Parameters:
      object - the object (identified by name or hash) of the object to remove the note from
      Returns:
      a builder to remove an existing note from the specified object
    • show

      @Nonnull GitNotesShowBuilder show(@Nonnull String object)
      Parameters:
      object - the object (identified by name or hash) of the object to show the note on
      Returns:
      a builder to show an existing note on the specified object