Documentation
WebsiteMineGitHubFaucet
  • Welcome to MakeOS
  • Introduction
    • Install
    • Quick Start
    • Set Up a Private Network
    • Get Test Coins
    • Track a Repository
    • What is MakeOS
    • How it Works
    • Tokenomics ($MAKE)
    • Dilithium (Deprecated)
    • Roadmap
    • Team
  • Concepts
    • Repository
      • Register a Repository
      • Initialize a New Repository
      • Repository Governance
      • Access Control Config
    • Namespace
    • Key
    • Issue Management
    • Merge Request
    • Transactions
      • Register a Repository
      • Send Coins
    • Validator
    • Host
    • Remote
  • JavaScript Console API
    • repo
    • pushkey
    • namespace
    • node
    • user
    • transaction
    • ticket
  • KIT CLI Reference
    • Overview
    • init
    • start
    • console
    • attach
    • key
      • create
      • gen
      • get
      • import
      • list
      • update
    • tx
      • get
    • repo
      • config
      • create
      • hook
      • init
      • vote
    • user
      • send
    • pk
      • register
    • sign
      • commit
      • note
      • tag
    • contributor
      • add
    • issue
      • close
      • create
      • list
      • read
      • reopen
      • status
    • mr
      • checkout
      • close
      • create
      • fetch
      • list
      • read
      • reopen
      • status
Powered by GitBook
On this page
  • Usage
  • Options
  • Example

Was this helpful?

  1. KIT CLI Reference
  2. issue

list

The list command lets you list all issues in a repository beginning with the most recent.

Usage

kit issue list [options]
Usage:
  kit issue list [flags]

Flags:
  -d, --date string     Set date format (default "Mon Jan _2 15:04:05 2006 -0700")
  -f, --format string   Set output format
  -h, --help            help for list
  -n, --limit int       Limit the number of records to returned
      --reverse         Return the result in reversed order

Options

  • -n, --limit - Limit the number of issues to return.

  • --reverse - Reverses the order from descending (latest) to ascending (oldest).

  • -d, --date - Provide a different date format.

  • -f, --format - Format the output for each issue. These are the supported verbs:

    • %i: Index of the post

    • %a: Author of the post

    • %e: Author email

    • %t: Title of the post

    • %c: The body/preview of the post

    • %d: Date of creation

    • %H: The full hash of the first comment

    • %h: The short hash of the first comment

    • %n: The reference name of the post

    • %pk: The push key address

  • -h, --help - Prints out a help message.

Example

kit issue list
PreviouscreateNextread

Last updated 4 years ago

Was this helpful?