Difference between revisions of "Main Page"

From SourceWiki
Jump to navigation Jump to search
Line 1: Line 1:
Rough..This is for a general introduction to Source and the principles of version control..
 
  
 
==Welcome to Source!==
 
==Welcome to Source!==

Revision as of 17:25, 8 February 2006

Welcome to Source!

Source is a new version control server for Geographers in the University of Bristol. You can use Source to store and manage your source code and documents.

What can Source do for me?

Version control systems help you keep track of the different versions of files--especially source code files--which change and evolve during the course of a project. But, version control systems can do much, much more for you besides! Source makes it easy to:

  • Collaborate with other resourchers.
  • Package and make your code available--for the RAE, for example.
  • Recover past versions of files--very useful for recovering from disasters!
  • Highlight differences between two versions of a file--very useful for finding bugs!
  • Keep a record of when changes were made, add reminders about why they might have changed, who changed them etc.
  • Develop variants (branches) of your code simultaneously.
  • Work on your code from several different computers--without losing track of what the latest version is!

How does Source do it?

Source can host a repository for each project that you work on. A project's repository can be used to store all the source code files (and other documents if you like) associtaed with that project. Source can then make these files easily available to all those you work on the project (through people's web browsers or installed client programs). Source then keeps a track of all the changes that are made to those files as the project evolves--perfect!

The two key concepts are:

  • a repository located on Source,
  • and local copies of the repository, which you create on your own computer and then work on.

Your changes are only recorded when you commit them back to your repository. At that point, there will be a new latest version of your code which other members of your project will have access to.

More Information on Version Control

Wikipedia has a good introduction to the topic of version control, if you would like to find out more. Alternatively, you might like to skip straight on to learning how you can use Subversion (link)--the version control package installed on Source.