Team Work! How is it done in Enterprises?
Many a times I have asked this question. There are about 10 people working on a particular file and a particular module. The same file, obviously! How do they keep track of changes, when many people start editing the same file doing some work? This made me think about how they manage these things.
It is actually by a type of software, namely Version Control Systems. But generally how do we do it? You start editing a file, named "My Blog Today". In the few moments, you need to go out and you wanted to make some changes. So, what do you do? Use "Save As" and type a name like "My Blog Today - 1". So on and so forth. But, this happens very much in designing and programming.
Once upon a time, I had to design a poster for my symposium. It looks this way (self dabba):
But before coming to this level, I was having the file like this way:
It is actually by a type of software, namely Version Control Systems. But generally how do we do it? You start editing a file, named "My Blog Today". In the few moments, you need to go out and you wanted to make some changes. So, what do you do? Use "Save As" and type a name like "My Blog Today - 1". So on and so forth. But, this happens very much in designing and programming.
Once upon a time, I had to design a poster for my symposium. It looks this way (self dabba):
![[IMG]](proxy.php?image=http%3A%2F%2Fi.imgur.com%2F4DOX3.png%3F1%3F2210&hash=19d39855b762aef8fa79eb5c953fa21b)
Filename: Poster_Final.png
But before coming to this level, I was having the file like this way:
![[IMG]](proxy.php?image=http%3A%2F%2Fi.imgur.com%2FYPyoT.jpg%3F1&hash=f1638b4043d5166feb646babcbfbf44b)
Filename: Poster1.jpg
![[IMG]](proxy.php?image=http%3A%2F%2Fi.imgur.com%2Fv0DEp.jpg%3F1&hash=02bbd5fa907658d2e89a4cf81ea96018)
Filename: Poster1.jpg
And now don't ask me, how is the Poster1 and Poster2 are ultimately different from the Poster_Final! Its because it went through more than 100 iterations and finally it was given printing. Now, what I have done is I renamed the same initial design Poster.jpg (not shown) into two different tracks, or you can call them as branches as Poster1.jpg and Poster2.jpg.
0