Name
sqitch-show - Show object information or script contents
Synopsis
sqitch show [options] <type> <object>
Description
Shows information about Sqitch objects. The first argument must be the type of object to show, and the second must be a key identifier for the object in the plan. The second argument must be a a change name or tag as specified in sqitchchanges. The supported types include:
-
changeA change object. Outputs the text used to generate the change SHA1 ID.
-
tagA tag. Outputs the text used to generate the tag SHA1 ID.
-
deployA change deploy script.
-
revertA change revert script.
-
verifyA change verify script.
Options
-
-t -
--targetThe target database, the plan for which should be read before deciding what object to show. This option should be the name of a target in the configuration.
-
-e -
--existsSuppress all output; instead exit with zero status if
<object>exists and is a valid object. -
--plan-file -
-fPath to the deployment plan file. Overrides target, engine, and core configuration values. Defaults to
$top_dir/sqitch.plan.
Examples
-
Show information about a specific change:
sqitch show change add_users_table -
Show information about a change by ID:
sqitch show change be7cd00571d7151eacb0691e825dfc8980cc14ff -
Show the most recent change info:
sqitch show change @HEAD -
Show information about a tag:
sqitch show tag @beta1 -
Show the contents of a deploy file:
sqitch show deploy add_users_table@HEAD
Sqitch
Part of the sqitch suite.
