Reputation: 13
For small-to-large teams developing software together, what tools are used to form a comprehensive team development framework?
Specifically, I'm looking for a comprehensive list of all the individual functions involved (e.g. source control, bug management, testing tools, project management), not specific product recommendations. I'm also not restricting the list to a particular methodology (e.g. Scrum).
Upvotes: 1
Views: 168
Reputation: 7529
A few more:
Upvotes: 0
Reputation: 89729
Less commonly used but promising tools (from academic background), some now have IDE based versions.
Real-time awareness (prevent nerge conflicts by letting you know somebody is working on the same file before you actually write code)
In-code social tagging, useful for bootmarking specific items
In-code contract communication tools (e.g., make a caller aware of special expectations in the invoked method as a way of avoiding errors).
Upvotes: 0
Reputation: 245389
You've hit the major ones in your post:
...I'm sure I'm missing something obvious, but somebody around here will correct me.
And the one I missed...
Upvotes: 0