Add Git notes support - #42
Open
lanwatch wants to merge 1 commit into
Open
Conversation
Based on mhutchie#475
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for git notes
This adds support for git notes in the graph view, based on the idea from the original issue: mhutchie#475
Commits with notes now show a small note label in the table, similar to how branches and tags are shown. There is also a new “Add Note” action in the commit menu, and existing notes can be viewed, edited, deleted, or copied from their context menu.
The table is refreshed after note changes, and changes made outside the extension are picked up from
.git/refs/notes/*too.I also added a few tests for the git note commands.
Note, I did this mostly with the help of Codex. I don't know if you have a policy against that. It is useful for me at least. I needed it and I got it done in 15 mins. Weird times...