Salesforce CLI(Command Line Interface)使用の流れ
・Install
https://developer.salesforce.com/ja/tools/sfdxcli
コマンドプロンプトにて、以下のコマンドを実行します。
・sfdx update
Salesforce CLI とプラグインの最新バージョンをインストールするには、次のコマンドを実行します。
・sfdx –version
現在のバージョンを確認します
・sfdx force:auth:web:login -d -a {エイリアス名}
例)sfdx force:auth:web:login -d -a devtest
ここで、「devtest」はエイリアス名
対象組織にログインします
・プロジェクト作成
例)C:\hoge>sfdx force:project:create -n hoge-project
hogeディレクトリ直下に「hoge-project」プロジェクトを作成します。
・対象組織にログインします。
例)C:\hoge>sfdx force:org:open -u test@testtesttestkkkk.com
ここで、ユーザ名「test@testtesttestkkkk.com」の場合
・プロジェクト「hoge-project」にApexクラス取得します。
例)C:\hoge\hoge-project>sfdx force:source:retrieve -m ApexClass -u devtest
ここで、「devtest」はエイリアス名
・パス指定して、取得します。
例)C:\hoge\hoge-project>sfdx force:source:retrieve -p force-app/main/default/classes -u devtest
ここで、「devtest」はエイリアス名