diff options
author | Arun Isaac | 2021-09-18 23:03:40 +0530 |
---|---|---|
committer | BonfaceKilz | 2021-09-20 10:31:42 +0300 |
commit | e1dfe6885fb3d8769c016259c2d30682f9f37b35 (patch) | |
tree | 45c029cef98f6836c7d8b58a62efc635e97e950e /README.gmi | |
parent | 04104d257129873e9b6627de1dc517cb94dcb630 (diff) | |
download | gn-gemtext-e1dfe6885fb3d8769c016259c2d30682f9f37b35.tar.gz |
gnbug: Add gnbug.
* gnbug: New file.
* README.gmi (gnbug): New section.
Diffstat (limited to 'README.gmi')
-rw-r--r-- | README.gmi | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -23,3 +23,24 @@ We will soon add a web readable version of Other discussions on leaving github => https://github.com/bitcoin-core/bitcoin-devwiki/wiki/GitHub-alternatives-for-Bitcoin-Core + +## gnbug + +You may peruse the issues in this repository using the provided gnbug command-line interface. gnbug requires guile. Please install guile before running gnbug. + +List all issues. +``` +./gnbug list +``` + +Only list issues assigned to pjotrp. +``` +./gnbug list --assigned=pjotrp +``` + +List issues that were created or updated in the last 3 days, in the last week or month respectively. The --since argument is passed directly to `git log`. Therefore, gnbug understands any --since argument that `git log` understands. +``` +./gnubug news --since='3 days' +./gnubug news --since='1 week' +./gnubug news --since='1 month' +``` |