shopify theme kitでよく使うコマンドについて記載
# configファイルを設定する
$theme configure --password=[your-api-password] --store=[your-store.myshopify.com] --themeid=[your-theme-id]
# テーマIDの一覧を取得
$theme get --list -p=[your-api-password] -s=[your-store.com]
# テーマをダウンロード(テーマIDを指定)
$theme get -p=[your-api-password] -s=[your-store.com] -t=[your-theme-id]
# デプロイ
$theme deploy
# デプロイ(指定ファイルのみ)
$theme deploy [filepath]
# 修正ファイルを随時アップ
$theme watch
# ブラウザでプレビューを確認する
$theme open
# ブラウザでプレビューを確認する
$theme open
# コマンドを特定の環境で実行したい場合の引数(configに複数環境記載の場合)
$ 〜 --env=production
以上
参考