You are on page 1of 1

Creating a project

-sfdc force:project:create -n projectname

Creating Repository
- create repository in github

git commands :
git init
git add README.md
git commit -m "first commit"
git remote add origin https://
got push -u origin master
create a branch
git checkout -b dev
create scratch org
sfdx force:org:create -f config/project-scrach-def.json -a developer
Show all the scratch orgs-sfdx force:org:list
to open the scratch org - sfdx force:open -u developer

to pull the source from scratch org


sfdx force:source:pull -u developer

You might also like