How to pull changes from Developer Org when using Salesforce DX CLI

The name of the pictureThe name of the pictureThe name of the pictureClash 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.








share|improve this question




























    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.








    share|improve this question
























      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.








      share|improve this question














      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.










      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 1 at 22:13

























      asked Sep 1 at 21:59









      Robs

      1,054323




      1,054323




















          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





          share|improve this answer


















          • 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

















          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





          share|improve this answer


















          • 2




            Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
            – Robs
            Sep 1 at 22:15










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "459"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          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






























          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





          share|improve this answer


















          • 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














          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





          share|improve this answer


















          • 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












          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





          share|improve this answer














          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






          share|improve this answer














          share|improve this answer



          share|improve this answer








          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












          • 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












          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





          share|improve this answer


















          • 2




            Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
            – Robs
            Sep 1 at 22:15














          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





          share|improve this answer


















          • 2




            Thanks. I'd recommend reading this help with formatting answers :) salesforce.stackexchange.com/editing-help
            – Robs
            Sep 1 at 22:15












          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





          share|improve this answer














          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






          share|improve this answer














          share|improve this answer



          share|improve this answer








          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












          • 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

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          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













































































          Comments

          Popular posts from this blog

          What does second last employer means? [closed]

          List of Gilmore Girls characters

          Confectionery