Integration with Version Control

Integration with Version Control

Example Git workflow:

  1. Save project to a local folder
  2. Initialize Git repository (if first time) or pull latest changes
  3. Stage and commit changes: git commit -am "Updated customer dimension"
  4. Push to remote: git push origin main
  5. Other developers can pull and use Load project to import changes