It writes more informative commits than I could ever make so I’m just reading what it says and mostly copy/pasting completely most of the time, I write all of the changes I’ve made into an LLM with a large context window and it write a very detailed commit not just with a title but with bullet points describing each of the changes precisely

  • packadal@beehaw.org
    link
    fedilink
    arrow-up
    3
    ·
    11 months ago

    I’m really curious to see examples of commit messages.

    And more details on how you achieved it, I’d like to give it a go myself, as some of my coworkers commit messages are less than stellar.

    Does it write in the conventional commit formalism ?

    • PumpkinDrama@reddthat.comOP
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      11 months ago

      9.71KB paste
      write brief git commit message

      Fix archive checking

      • Refactor to use functions for common logic
      • Check archive file after downloading playlists
      • Remove aliases, simplify main commands
      • Minor cleanups

      I started asking this later

      write brief git commit message using Conventional Commits style and bullet points, split into smaller chunks if necessary specifying the chunks

      • packadal@beehaw.org
        link
        fedilink
        arrow-up
        2
        ·
        11 months ago

        but it started splitting my commits in chunks

        Wait, it can split commits ? I thought you “just” used a LLM to write the messages, but it can also act on the commits ?

        How did you achieve this?

        • PumpkinDrama@reddthat.comOP
          link
          fedilink
          arrow-up
          1
          ·
          11 months ago

          No it just writes the patch text that I pass split in chuncks with a git commit message for each of the chuncks, but I’m the one who has to copy that and perform the commit