From 5338af17578aafe612d4f48ca2e28a82715e2347 Mon Sep 17 00:00:00 2001 From: Glenn Dimaliwat Date: Tue, 5 Sep 2023 19:16:04 +1000 Subject: [PATCH] sf: rename command from sfdx (#10671) --- pages/common/sf.md | 36 ++++++++++++++++++++++++++++++++++++ pages/common/sfdx.md | 36 ------------------------------------ 2 files changed, 36 insertions(+), 36 deletions(-) create mode 100644 pages/common/sf.md delete mode 100644 pages/common/sfdx.md diff --git a/pages/common/sf.md b/pages/common/sf.md new file mode 100644 index 000000000..de2e8da64 --- /dev/null +++ b/pages/common/sf.md @@ -0,0 +1,36 @@ +# sf + +> Salesforce CLI is a powerful command line interface that simplifies development and build automation when working with your Salesforce org. +> More information: . + +- Authorize a Salesforce Organization: + +`sf force:auth:web:login --setalias {{organization}} --instanceurl {{organization_url}}` + +- List all authorized organizations: + +`sf force:org:list` + +- Open a specific organization in the default web browser: + +`sf force:org:open --targetusername {{organization}}` + +- Display information about a specific organization: + +`sf force:org:display --targetusername {{organization}}` + +- Push source metadata to an Organization: + +`sf force:source:push --targetusername {{organization}}` + +- Pull source metadata from an Organization: + +`sf force:source:pull --targetusername {{organization}}` + +- Generate a password for the organization's logged-in user: + +`sf force:user:password:generate --targetusername {{organization}}` + +- Assign a permission set for the organization's logged-in user: + +`sf force:user:permset:assign --permsetname {{permission_set_name}} --targetusername {{organization}}` diff --git a/pages/common/sfdx.md b/pages/common/sfdx.md deleted file mode 100644 index 5d7002dea..000000000 --- a/pages/common/sfdx.md +++ /dev/null @@ -1,36 +0,0 @@ -# sfdx - -> Command-line tool for development and build automation with a Salesforce organization. -> More information: . - -- Authorize a Salesforce Organization: - -`sfdx force:auth:web:login --setalias {{organization}} --instanceurl {{organization_url}}` - -- List all authorized organizations: - -`sfdx force:org:list` - -- Open a specific organization in the default web browser: - -`sfdx force:org:open --targetusername {{organization}}` - -- Display information about a specific organization: - -`sfdx force:org:display --targetusername {{organization}}` - -- Push source metadata to an Organization: - -`sfdx force:source:push --targetusername {{organization}}` - -- Pull source metadata from an Organization: - -`sfdx force:source:pull --targetusername {{organization}}` - -- Generate a password for the organization's logged-in user: - -`sfdx force:user:password:generate --targetusername {{organization}}` - -- Assign a permission set for the organization's logged-in user: - -`sfdx force:user:permset:assign --permsetname {{permission_set_name}} --targetusername {{organization}}`