Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 611 Bytes

Git commands.md

File metadata and controls

17 lines (16 loc) · 611 Bytes

Git Steps:

  1. Create a project with manifest
  2. Authorize an org
  3. Right click on the package.xml file and click Retrieve source file from org
  4. In the terminal, type git version → It should show the version after installing git.
  5. git status
  6. git add .
  7. git commit -m 'First Commit'
  8. git push → If not working, add the remote URL
  9. git remote add origin https://github.com/Krishnamurthy-sfdx/LWC
  10. git push
  11. git status
  12. git pull
  13. git fetch
  14. git branch

Git Commands