@@ -132,6 +132,73 @@ view code coverage information as follows:
132132 lines based on whether they are covered by tests or not.
133133
134134
135+ ## Git-bug: Local Issue Tracking
136+
137+ This project uses [ git-bug] ( https://github.com/git-bug/git-bug ) for distributed,
138+ offline-first issue tracking. Issues from GitHub are synced and stored as native
139+ git objects under ` refs/bugs/* ` , so you can browse and search them without internet
140+ access or GitHub API calls.
141+
142+ ### Installation
143+
144+ Install git-bug from [ releases] ( https://github.com/git-bug/git-bug/releases )
145+ or via a package manager:
146+
147+ # macOS/Linux (Homebrew)
148+ brew install git-bug
149+
150+ # Nix
151+ nix profile install nixpkgs#git-bug
152+
153+ # Binary download (Linux amd64)
154+ curl -L -o git-bug \
155+ https://github.com/git-bug/git-bug/releases/latest/download/git-bug_linux_amd64
156+ chmod +x git-bug && mv git-bug ~/.local/bin/
157+
158+ ### Fetching Issues
159+
160+ After cloning, fetch the bug refs to get local issues:
161+
162+ git bug pull
163+
164+ ### Quick Reference
165+
166+ # List open issues
167+ git bug ls status:open
168+
169+ # Show a specific issue (by ID prefix)
170+ git bug show <id-prefix>
171+
172+ # Search issues by title keyword
173+ git bug ls status:open "title:upload"
174+
175+ # Filter by label
176+ git bug ls "label:bug"
177+
178+ # Filter by author
179+ git bug ls "author:username"
180+
181+ # Newest first
182+ git bug ls status:open sort:creation-desc
183+
184+ ### Syncing with GitHub
185+
186+ # Pull latest issues from GitHub
187+ git bug bridge pull
188+
189+ # Push local bug refs to remote (for team access)
190+ git bug push origin
191+
192+ ### Known Limitations
193+
194+ - ** Images/media** : Bridge importers preserve image URLs as markdown text but
195+ do not download image blobs. Images hosted on
196+ ` user-images.githubusercontent.com ` are accessible only while GitHub hosts
197+ them.
198+ - ** Two-way sync** : While git-bug supports pushing changes back to GitHub,
199+ the primary workflow is pull-from-GitHub for offline access.
200+
201+
135202## Releasing with GitHub Actions, auto, and pull requests
136203
137204New releases of dandi-cli are created via a GitHub Actions workflow built
0 commit comments