Started experimenting with "git notes" against a new repo on GitHub to see if they might offer a neat way to archive issue threads in the repository itself
As far as I can tell the web UI doesn't have any mechanism for displaying them?
Conversation
You can push notes to a repo on GitHub using:
git push origin 'refs/notes/*'
And pull notes with:
git fetch origin 'refs/notes/*:refs/notes/*'
They'll then show up locally for you when you run "git log"
Can't find a way to see them in the web interface at all though
1
1
10
Well that's frustrating... it looks like GitHub supported the display of git notes in the past, but they removed that feature in 2014: github.blog/2010-08-25-git
read image description
ALT
4
6
A more promising route for backing up issue threads to the repo itself looks to be stashing copies of them in a dedicated branch
I'm looking for a way to backup the context from my issue threads to the repository itself, to protect against switching issue trackers
4
They used to but apparently yanked it out years ago


