Push Changes to your org

The sfp project:push command deploys source from your local project to a specified Salesforce org. It can push changes based on a package, domain, or specific source path. This command is useful for deploying local changes to your Salesforce org.

When -p names a data package, sfp push -p <data-package> -o <org> deploys records through SFDMU instead of metadata. From sfp v51, data packages can store those records one file per record — see Per-record data packages. To run SFDMU directly from a script on v51, use sfp sfdmu run (see Data Packages).

Usage

sfp project:push -o <org> [flags]

Flags

FlagDescriptionRequired
-o, --targetusernameUsername or alias of the target orgYes
-p, --packageName of the package to pushNo
-d, --domainName of the domain to pushNo
-s, --source-pathPath to the local source files to pushNo
-i, --ignore-conflictsIgnore conflicts during pushNo
--no-replacementsSkip text replacements during pushNo
--replacementsoverridePath to override replacements fileNo
--jsonFormat output as JSONNo
--loglevelLogging levelNo

Flag Details

  • The -p, -d, and -s flags are mutually exclusive. Use only one to specify the scope of the push operation.
  • --ignore-conflicts: Use this flag to override conflicts and push changes to the org, potentially overwriting org metadata.
  • --no-replacements: Disables automatic text replacements. By default, sfp applies configured replacements from preDeploy/replacements.yml.
  • --replacementsoverride: Specify a custom YAML file containing replacement configurations to use instead of the default.
  • --json: When specified, the command outputs a structured JSON object with detailed information about the push operation, including replacement details.

Source Tracking

Source tracking is a feature that keeps track of the changes made to metadata both in your local project and in the org. When source tracking is enabled, the project:push command can more efficiently deploy only the changes made locally since the last sync, rather than deploying all metadata.

How Source Tracking Works with project:push

  • When pushing to a source-tracked org without specifying a package, domain, or source path, the command will use source tracking to deploy only the local changes.
  • For non-source-tracked orgs or when a specific scope is provided (via -p, -d, or -s flags), the command will deploy all metadata within the specified scope.
  • Source tracking provides faster and more efficient deployment of changes, especially in large projects.

Limitations

  • Source tracking is not available for all org types. It's primarily used with scratch orgs and some sandbox orgs.
  • If source tracking is not enabled or supported, the project:push command will fall back to deploying all metadata within the specified scope.

Text Replacements

Availability: String replacements are available from September 2025.

The push command automatically applies text replacements to convert placeholder values in your source files to environment-specific values before deployment. This feature helps manage environment-specific configurations without modifying source files.

For detailed information about string replacements, see String Replacements.

Quick Example

If your source contains placeholders:

private static final String API_URL = '%%API_ENDPOINT%%';

During push to a dev org, it becomes:

private static final String API_URL = 'https://api-dev.example.com';

To skip replacements:

sfp push -p myPackage -o myOrg --no-replacements

Examples

Push changes using source tracking (if available):

sfp project:push -o myOrg

Push changes for a specific package:

sfp project:push -o myOrg -p myPackage

Push changes for a specific domain:

sfp project:push -o myOrg -d myDomain

Push changes from a specific source path:

sfp project:push -o myOrg -s force-app/main/default

Push changes and ignore conflicts:

sfp project:push -o myOrg -i

JSON Output

When --json is specified, the command outputs a JSON object with the following structure:

{
  "hasError": boolean,
  "errorMessage": string,
  "errors": [
    {
      "Name": string,
      "Type": string,
      "Status": string,
      "Message": string
    }
  ],
  "conflicts": [
    {
      "fullName": string,
      "type": string,
      "filePath": string,
      "state": string
    }
  ],
  "replacements": {
    "success": boolean,
    "packageName": string,
    "filesModified": [
      {
        "path": string,
        "replacements": [
          {
            "pattern": string,
            "value": string,
            "count": number
          }
        ],
        "totalCount": number
      }
    ],
    "totalFiles": number,
    "totalReplacements": number,
    "errors": [],
    "orgAlias": string
  }
}

The replacements field provides detailed information about text replacements applied during the push operation.

Error Handling

If an error occurs during the push operation, the command will throw an error with details about what went wrong. Use the --json flag to get structured error information in the output.

On this page