this post was submitted on 11 Aug 2024
31 points (97.0% liked)

Git

2822 readers
1 users here now

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

Resources

Rules

  1. Follow programming.dev rules
  2. Be excellent to each other, no hostility towards users for any reason
  3. No spam of tools/companies/advertisements. It’s OK to post your own stuff part of the time, but the primary use of the community should not be self-promotion.

Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.

founded 1 year ago
MODERATORS
top 2 comments
sorted by: hot top controversial new old
[–] RonSijm@programming.dev 1 points 1 month ago (1 children)

Interesting idea to store github comments inside git, the article just isn't very clear to me on how to actually do it.

He's talking about using an "internal CLI tool" so I guess it's not a public tool?

But anyways, this kinda sounds like something you could do though a Github Action right? Like if a PR is merged, run an action that also appends PR comments or other meta-data from github into git

[–] starshipwinepineapple@programming.dev 2 points 1 month ago* (last edited 1 month ago)

The first part of the article talks about how to use git notes and has an example commit, followed by adding the note, and then viewing the note. This is all native git.

The "problem" is that we have centralized discussions in github/gitlab comments and if we want to retain that data then we need to convert the comments into gitnotes. The CLI part is that specific discussion on how Symfony uses git notes to store github comments. It references an internal CLI but then goes through an example of how to use github api to fetch the comments, create git notes, then push those git notes to github. So while the symfony CLI is internal, it looks like we're given an example of how to do this for github.