• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Version Control System (VCS)

 
Ranch Hand
Posts: 57
Eclipse IDE Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can Any one tell me what is Version Control System (VCS) and please provide me the use full links !!!
 
Ranch Hand
Posts: 1609
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Subhash Pavuskar wrote:Can Any one tell me what is Version Control System (VCS) and please provide me the use full links !!!



I doubt if this should go under Androi-forum.

Anyway, VCS is a software which as the name says is used to handle versions of your files. You have a file today, tomorrow you make the changes and the day after some more. If it is managed via VCS, you can pull out all the three versions (with and without the changes you made). Links? You can google them.

More often you also use VCS to avoid dependencies of a project development among users, like three people have to make changes to same file or so.
 
Subhash Pavuskar
Ranch Hand
Posts: 57
Eclipse IDE Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@Akhilesh Trivedi : Thanks Dude actually i tried to search in google and found some links but i am unable to configure what is that exactly so i post in this forum


Akhilesh Trivedi wrote:

Subhash Pavuskar wrote:Can Any one tell me what is Version Control System (VCS) and please provide me the use full links !!!



I doubt if this should go under Androi-forum.

Anyway, VCS is a software which as the name says is used to handle versions of your files. You have a file today, tomorrow you make the changes and the day after some more. If it is managed via VCS, you can pull out all the three versions (with and without the changes you made). Links? You can google them.

 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Akhilesh is right that this has nothing at all to do with Android, so I will move it to a more appropriate forum.
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you google version control system, the first hit is the wikipedia article on Revision Control. Did you read that?

Basically, here is the problem. You write some code. It works. Then you start to modify it. Now it doesn't work. What did you change? How do you get back to what worked? Some people save copies of working code and then can compare old code to new code. A VCS automates this process. You tell the VCS when you are done with changes ("checkin"), and you can ask the VCS for either the current or any older version of the code ("checkout").

Now add to this that you might not be the only person working on the code. How do you keep the changes made by a dozen people in sync. And how has the "correct" version of the code. A VCS also solves that problem because it is in effect a source code database. When you want ot made changes ot the source code, you "checkout" the code form the VCS. When you are done, you check the code back into the VCS.

And then consider what happens after you release software to users. They find bugs. You need to give them a fix. But you've already made a lot of changes which you are not ready to give them. A VCS will let you "branch" you code changes so that you can apply bug fixes to the same source that you released earlier, while still continue adding new features to another branch (usually referred to as the "trunk"). A lot of VCS literature spends a lot of time talking about branching. But for personal app development you can usually ignore that. For my personal apps I use a VCS simply to store working states of the source code (what I described in my first paragraph).

The best way to learn more about what VCSs do is to play with them. Some popular free ones include Subversion, git and Mercurial. Also, you might as well install all three of these because open source projects tend to use them to manage their source, and so if you ever will need the source for anything, you'll need the VCS's tools to get the source.
 
Would anybody like some fudge? I made it an hour ago. And it goes well with a tiny ad ...
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic