I'm looking for best practices around setting up source control to share work between developers.
We have some experience using SVN, but I don't have these notes handy. Here are some notes from using Git.
Current contents of .gitignore:
**/indy.build/*
workspace/*
!workspace/README.md
*DS_Store
*.swp
**/.settings/org.eclipse.core.resources.prefs
But I think it might make sense to add this as well:
*.map_diagram
What would be the result of this? Is it safe to assume that a new digram is generated automatically as needed, so things would work well?
It would be great to have some source control notes and best practices posted as an article.