How to pull changes from Developer Org when using Salesforce DX CLI
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
4
down vote
favorite
How do I push and pull changes to a Developer Org using Salesforce DX CLI?
When I used this command:
sfdx force:source:pull
I get this error:
ERROR:
MemberName, IsNameObsolete FROM SourceMember WHERE RevisionNum
ERROR at Row:1:Column:52
sObject type 'SourceMember' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.
salesforcedx salesforcedx-cli
add a comment |Â
up vote
4
down vote
favorite
How do I push and pull changes to a Developer Org using Salesforce DX CLI?
When I used this command:
sfdx force:source:pull
I get this error:
ERROR:
MemberName, IsNameObsolete FROM SourceMember WHERE RevisionNum
ERROR at Row:1:Column:52
sObject type 'SourceMember' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.
salesforcedx salesforcedx-cli
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
How do I push and pull changes to a Developer Org using Salesforce DX CLI?
When I used this command:
sfdx force:source:pull
I get this error:
ERROR:
MemberName, IsNameObsolete FROM SourceMember WHERE RevisionNum
ERROR at Row:1:Column:52
sObject type 'SourceMember' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.
salesforcedx salesforcedx-cli
How do I push and pull changes to a Developer Org using Salesforce DX CLI?
When I used this command:
sfdx force:source:pull
I get this error:
ERROR:
MemberName, IsNameObsolete FROM SourceMember WHERE RevisionNum
ERROR at Row:1:Column:52
sObject type 'SourceMember' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.
salesforcedx salesforcedx-cli
edited Sep 1 at 22:13
asked Sep 1 at 21:59
Robs
1,054323
1,054323
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
Winter 19 release has pilot commands to help with non scratch orgs.
You will need sfdx client pre release plugin installed to try .
The commands are
sfdx force:source:retrieve -- retrieves metadata from the org using package.xml or metadata folder or comma separated list of metadata
sfdx force:source:deploy -- deploy metadata to the non scratch org
To get started follow the instructions here
Install the Pre-Release Version of the CLI
sfdx plugins:install salesforcedx@pre-release
Make sure that you have the pre-release version.
sfdx plugins --core
salesforcedx 44.0.1-xx
When the plugin is officially released v44 in mid October 2018, uninstall the pre-release version, then run the update command.
sfdx plugins:uninstall salesforcedx
sfdx update
1
That's good to know. It'll make migration a lot easier.
– sfdcfox
Sep 1 at 23:55
Do these commands in the pilot version work with v43 orgs, or only v44 pre-release?
– Charles T
Sep 2 at 0:59
All the orgs .It's based on metadata api .Org does not matter
– Mohith Shrivastava
Sep 2 at 1:07
@MohithShrivastava how do I access the pilot?
– Robs
Sep 4 at 13:37
1
Updated the answer .Please check !!!
– Mohith Shrivastava
Sep 4 at 15:34
add a comment |Â
up vote
2
down vote
force:source:pull
is used to pull from scratch org only.
To 'pull' from developer org you need to use metadata API.
Use the force:mdapi:retrieve
command.
For more info:
- https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_force_mdapi.htm
2
Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
– Robs
Sep 1 at 22:15
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Winter 19 release has pilot commands to help with non scratch orgs.
You will need sfdx client pre release plugin installed to try .
The commands are
sfdx force:source:retrieve -- retrieves metadata from the org using package.xml or metadata folder or comma separated list of metadata
sfdx force:source:deploy -- deploy metadata to the non scratch org
To get started follow the instructions here
Install the Pre-Release Version of the CLI
sfdx plugins:install salesforcedx@pre-release
Make sure that you have the pre-release version.
sfdx plugins --core
salesforcedx 44.0.1-xx
When the plugin is officially released v44 in mid October 2018, uninstall the pre-release version, then run the update command.
sfdx plugins:uninstall salesforcedx
sfdx update
1
That's good to know. It'll make migration a lot easier.
– sfdcfox
Sep 1 at 23:55
Do these commands in the pilot version work with v43 orgs, or only v44 pre-release?
– Charles T
Sep 2 at 0:59
All the orgs .It's based on metadata api .Org does not matter
– Mohith Shrivastava
Sep 2 at 1:07
@MohithShrivastava how do I access the pilot?
– Robs
Sep 4 at 13:37
1
Updated the answer .Please check !!!
– Mohith Shrivastava
Sep 4 at 15:34
add a comment |Â
up vote
4
down vote
accepted
Winter 19 release has pilot commands to help with non scratch orgs.
You will need sfdx client pre release plugin installed to try .
The commands are
sfdx force:source:retrieve -- retrieves metadata from the org using package.xml or metadata folder or comma separated list of metadata
sfdx force:source:deploy -- deploy metadata to the non scratch org
To get started follow the instructions here
Install the Pre-Release Version of the CLI
sfdx plugins:install salesforcedx@pre-release
Make sure that you have the pre-release version.
sfdx plugins --core
salesforcedx 44.0.1-xx
When the plugin is officially released v44 in mid October 2018, uninstall the pre-release version, then run the update command.
sfdx plugins:uninstall salesforcedx
sfdx update
1
That's good to know. It'll make migration a lot easier.
– sfdcfox
Sep 1 at 23:55
Do these commands in the pilot version work with v43 orgs, or only v44 pre-release?
– Charles T
Sep 2 at 0:59
All the orgs .It's based on metadata api .Org does not matter
– Mohith Shrivastava
Sep 2 at 1:07
@MohithShrivastava how do I access the pilot?
– Robs
Sep 4 at 13:37
1
Updated the answer .Please check !!!
– Mohith Shrivastava
Sep 4 at 15:34
add a comment |Â
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Winter 19 release has pilot commands to help with non scratch orgs.
You will need sfdx client pre release plugin installed to try .
The commands are
sfdx force:source:retrieve -- retrieves metadata from the org using package.xml or metadata folder or comma separated list of metadata
sfdx force:source:deploy -- deploy metadata to the non scratch org
To get started follow the instructions here
Install the Pre-Release Version of the CLI
sfdx plugins:install salesforcedx@pre-release
Make sure that you have the pre-release version.
sfdx plugins --core
salesforcedx 44.0.1-xx
When the plugin is officially released v44 in mid October 2018, uninstall the pre-release version, then run the update command.
sfdx plugins:uninstall salesforcedx
sfdx update
Winter 19 release has pilot commands to help with non scratch orgs.
You will need sfdx client pre release plugin installed to try .
The commands are
sfdx force:source:retrieve -- retrieves metadata from the org using package.xml or metadata folder or comma separated list of metadata
sfdx force:source:deploy -- deploy metadata to the non scratch org
To get started follow the instructions here
Install the Pre-Release Version of the CLI
sfdx plugins:install salesforcedx@pre-release
Make sure that you have the pre-release version.
sfdx plugins --core
salesforcedx 44.0.1-xx
When the plugin is officially released v44 in mid October 2018, uninstall the pre-release version, then run the update command.
sfdx plugins:uninstall salesforcedx
sfdx update
edited Sep 4 at 15:34
answered Sep 1 at 22:50


Mohith Shrivastava
58k791131
58k791131
1
That's good to know. It'll make migration a lot easier.
– sfdcfox
Sep 1 at 23:55
Do these commands in the pilot version work with v43 orgs, or only v44 pre-release?
– Charles T
Sep 2 at 0:59
All the orgs .It's based on metadata api .Org does not matter
– Mohith Shrivastava
Sep 2 at 1:07
@MohithShrivastava how do I access the pilot?
– Robs
Sep 4 at 13:37
1
Updated the answer .Please check !!!
– Mohith Shrivastava
Sep 4 at 15:34
add a comment |Â
1
That's good to know. It'll make migration a lot easier.
– sfdcfox
Sep 1 at 23:55
Do these commands in the pilot version work with v43 orgs, or only v44 pre-release?
– Charles T
Sep 2 at 0:59
All the orgs .It's based on metadata api .Org does not matter
– Mohith Shrivastava
Sep 2 at 1:07
@MohithShrivastava how do I access the pilot?
– Robs
Sep 4 at 13:37
1
Updated the answer .Please check !!!
– Mohith Shrivastava
Sep 4 at 15:34
1
1
That's good to know. It'll make migration a lot easier.
– sfdcfox
Sep 1 at 23:55
That's good to know. It'll make migration a lot easier.
– sfdcfox
Sep 1 at 23:55
Do these commands in the pilot version work with v43 orgs, or only v44 pre-release?
– Charles T
Sep 2 at 0:59
Do these commands in the pilot version work with v43 orgs, or only v44 pre-release?
– Charles T
Sep 2 at 0:59
All the orgs .It's based on metadata api .Org does not matter
– Mohith Shrivastava
Sep 2 at 1:07
All the orgs .It's based on metadata api .Org does not matter
– Mohith Shrivastava
Sep 2 at 1:07
@MohithShrivastava how do I access the pilot?
– Robs
Sep 4 at 13:37
@MohithShrivastava how do I access the pilot?
– Robs
Sep 4 at 13:37
1
1
Updated the answer .Please check !!!
– Mohith Shrivastava
Sep 4 at 15:34
Updated the answer .Please check !!!
– Mohith Shrivastava
Sep 4 at 15:34
add a comment |Â
up vote
2
down vote
force:source:pull
is used to pull from scratch org only.
To 'pull' from developer org you need to use metadata API.
Use the force:mdapi:retrieve
command.
For more info:
- https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_force_mdapi.htm
2
Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
– Robs
Sep 1 at 22:15
add a comment |Â
up vote
2
down vote
force:source:pull
is used to pull from scratch org only.
To 'pull' from developer org you need to use metadata API.
Use the force:mdapi:retrieve
command.
For more info:
- https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_force_mdapi.htm
2
Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
– Robs
Sep 1 at 22:15
add a comment |Â
up vote
2
down vote
up vote
2
down vote
force:source:pull
is used to pull from scratch org only.
To 'pull' from developer org you need to use metadata API.
Use the force:mdapi:retrieve
command.
For more info:
- https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_force_mdapi.htm
force:source:pull
is used to pull from scratch org only.
To 'pull' from developer org you need to use metadata API.
Use the force:mdapi:retrieve
command.
For more info:
- https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_force_mdapi.htm
edited Sep 1 at 22:29
Robs
1,054323
1,054323
answered Sep 1 at 22:10
benjamin
1211
1211
2
Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
– Robs
Sep 1 at 22:15
add a comment |Â
2
Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
– Robs
Sep 1 at 22:15
2
2
Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
– Robs
Sep 1 at 22:15
Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
– Robs
Sep 1 at 22:15
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f230947%2fhow-to-pull-changes-from-developer-org-when-using-salesforce-dx-cli%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password