sd.tickets

application/octet-stream

Filename: sd.tickets
Type: application/octet-stream
Part: 1
Message: Re: Getting a bug tracker for the Postgres project
sd 0.74 - Creating and Updating tickets
---------------------------------------
    sd ticket create
      Invokes a text editor with a ticket creation template.
      Note that 'new' is an alias for 'create'.

    sd ticket create --verbose
    sd ticket create -v
      Invokes a text editor with a ticket creation template
      and also shows descriptions and valid values for
      properties.

    sd ticket create -- summary="This is a summary" status=open
      Create a new ticket non-interactively.

    sd ticket update 123 -- status=closed
      Sets the status of the ticket with local id 123 to closed.
      Note that 'edit' is an alias for 'update'.

    sd ticket update 123
      Interactively update the ticket with local id 123 in a text
      editor.

    sd ticket update 123 --verbose
    sd ticket update 123 -v
      Interactively update the ticket with local id 123 in a text
      editor and show descriptions and valid values for props.

    sd ticket update 123 --all-props
    sd ticket update 123 -a
      Interactively update the ticket with local id 123 in a text
      editor, presenting all the props of the record for editing instead of
      just those specified by the database setting 'common_ticket_props'
      (or local configuration variable 'common_ticket_props' if it exists).

    sd ticket update fad5849a-67f1-11dd-bde1-5b33d3ff2799 -- status=closed
      Sets the status of the ticket with uuid
      fad5849a-67f1-11dd-bde1-5b33d3ff2799 to closed.

    sd ticket take 123
      Sets the owner of ticket 123 to you (your email address is taken
      from either the 'email_address' local config variable or the
      EMAIL environmental variable). An alias of 'take' is 'claim'.

    sd ticket give 123 nobody@example.com
      Sets the owner of ticket 123 to nobody@example.com.
      An alias of 'give' is 'assign'.

    sd ticket resolve 123
    sd ticket close 123
      Sets the status of the ticket with local id 123 to closed.

    sd ticket resolve 123 --edit
    sd ticket resolve 123 -e
      Sets the status of the ticket with local id 123 to closed,
      allowing you to edit any properties in an editor and
      optionally add a comment in the process.