DEV Community

Cover image for How do software developers from different parts of the world collaborate?
Arsala Khan
Arsala Khan

Posted on • Updated on • Originally published at learn.grey.software

How do software developers from different parts of the world collaborate?

When you're working with software developers from around the world on a project, you need to know:

  • What changes were made since your last collaboration
  • Who made those changes
  • When were those changes made
  • Why were those changes needed

Messaging your teammates about which file you're changing and telling them to keep their fingers off is not the optimal workflow. Neither is storing .zip snapshots of your code on a shared online drive.

To get around this issue, we use a version control system (or a VCS).

A VCS allows multiple people to work on the same set of files in structured harmony.

Team members can work on any project file on their local version and merge their changes into a shared version.

The latest version of a file or the whole project is always in a shared location managed by the VCS.

Learn More about Version Control Systems: https://learn.grey.software/concepts/version-control

Top comments (0)