diff --git a/README.md b/README.md index 1f8dcda..a4400fa 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,103 @@ # Backlog - zig version: 0.15.1 Backlog Labs Game Engine. +## Getting Started + run tools/scripts/first-time-setup.py ffmpeg -i INPUT.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 OUTPUT.ogv +## git-bug Cheat Sheet + +This project uses git-bug for distributed issue tracking. Issues are stored directly in the repository. + +### Common Commands + +**Listing Issues** +```bash +git bug bug # List all issues +git bug bug status:open # List only open issues +git bug bug status:closed # List only closed issues +``` + +**Creating Issues** +```bash +git bug bug new -t "title" -m "message" # Create new issue +git bug bug new -t "Add feature X" -m "Description" # Example +``` + +**Viewing & Managing Issues** +```bash +git bug bug show # Show issue details +git bug bug comment # Add a comment to an issue +git bug bug close # Close an issue +git bug bug open # Reopen an issue +git bug bug status # Show issue status +``` + +**Labels** +```bash +git bug bug label # Show labels for an issue +git bug bug label new