
Andrew Hanna

Andrew Hanna

TL;DR: To graduate from change sets to source control, put your org's metadata in a Git repository, adopt a source-tracked development environment, and deploy through a pipeline instead of hand-picking components. Do it incrementally: enable source tracking, pilot one team on Git and a validate-only pipeline, then retire change sets scope by scope.
Salesforce itself now recommends customers graduate from the org-to-org release model, and most guides tell you why change sets fall short. Fewer give you the actual migration path. This guide is that path: a repeatable playbook you can run without freezing delivery.
It means moving the source of truth for your metadata out of the org and into a version control system, usually Git. Change sets copy components org to org and leave no history. Source control stores every layout, flow, permission set, and Apex class as versioned files, so you can branch, review, deploy, and roll back. The org becomes a deployment target instead of the master record.
Change sets are a fine starting point and stay useful for tiny teams. They hit a wall as you grow:
Run these steps in order. The goal is a working pipeline for one scope before you expand.
The free baseline is Salesforce's own: the Salesforce CLI, Salesforce DX, and DevOps Center, which replaces change sets with a Git-backed UI and integrates with GitHub and Bitbucket. When you need managed pipelines, backups, metadata-aware diffs, and quality gates, platforms such as Serpent, Copado, Gearset, AutoRABIT, Flosum, Salto, and Blue Canvas build on the same Git foundation. Start free, then adopt a platform when process, not tooling, is your bottleneck. We walk through this specific upgrade path on change sets versus Serpent. For more Salesforce DevOps how-tos, see the Serpent guides.
Do not try a big-bang cutover. Migrate one scope at a time and keep change sets running in parallel until each pipeline is proven. Enable source tracking before you build, not after, or your first sandboxes will not capture changes. And baseline the whole org before anyone starts a feature branch, so your repository reflects production from day one rather than drifting from it.
Do I have to stop using change sets immediately?
No. Migrate scope by scope and keep change sets for teams that have not moved yet, so delivery never freezes.
What environments support source tracking?
Scratch orgs and Developer and Developer Pro sandboxes support source tracking; Partial Copy and Full sandboxes do not.
Is DevOps Center enough, or do I need a paid tool?
DevOps Center is a free, Git-backed starting point. Add a commercial platform when you need managed pipelines, backups, or advanced quality gates.
How do I baseline an existing org?
Retrieve the org's metadata with the Salesforce CLI, convert it to source format, and commit it as the first version in your repository.
Commitment free!