| Chris@494 | 1 <link rel="stylesheet" type="text/css" href="help.css"/> | 
| Chris@494 | 2 <p><a href="topics.html">Back to Topics</a></p><hr> | 
| Chris@494 | 3 | 
| Chris@494 | 4 | 
| Chris@494 | 5 <h2>What is a repository?</h2> | 
| Chris@494 | 6 | 
| Chris@494 | 7 <p>When you use a version control system to keep track of your changes to | 
| Chris@494 | 8 a set of files, there are two different concepts you're dealing with: | 
| Chris@494 | 9 a <i>working copy</i> and a <i>repository</i>.</p> | 
| Chris@494 | 10 | 
| Chris@494 | 11 <p>A <i>working copy</i> is just a folder with your project's files in it.  It | 
| Chris@494 | 12 contains the versions of the files that you are working with now. | 
| Chris@494 | 13 <ul><li>EasyMercurial's “My Work” tab shows you which files you have been working on in your current working copy.</li></ul></p> | 
| Chris@494 | 14 | 
| Chris@494 | 15 <p>A <i>repository</i> is a record of the entire history of your project. When | 
| Chris@494 | 16 change something in the working copy, you can then commit it to the | 
| Chris@494 | 17 repository and your change gets added to the history. | 
| Chris@494 | 18 <ul><li>EasyMercurial's “History” tab shows you the changes that have been committed to your project's history in its repository.</li></ul></p> | 
| Chris@494 | 19 | 
| Chris@494 | 20 <p>You can also go back and grab an older version from the repository if | 
| Chris@494 | 21 you find you need it.  (If you do this, then the working copy will be | 
| Chris@494 | 22 updated so as to contain that older version rather than the most | 
| Chris@494 | 23 recent one.)</p> | 
| Chris@494 | 24 | 
| Chris@494 | 25 <p>Older centralised version control systems use a separate database for | 
| Chris@494 | 26 the repository.  But with a distributed version control system such as | 
| Chris@494 | 27 Mercurial, the repository – the entire history of your project files | 
| Chris@494 | 28 – is stowed into a special folder inside the working copy on your | 
| Chris@494 | 29 hard drive.  Every change you commit gets added to the history in that | 
| Chris@494 | 30 hidden folder. (The history is compressed, so it doesn't take as much | 
| Chris@494 | 31 space as you might imagine.)</p> | 
| Chris@494 | 32 | 
| Chris@494 | 33 <p>The term <i>remote repository</i> simply refers to a repository related to | 
| Chris@494 | 34 your local one, but stored on another computer somewhere else.  Often | 
| Chris@494 | 35 this may be a “master copy” of your project stored on a server | 
| Chris@494 | 36 elsewhere, which you and your collaborators can use to keep up with | 
| Chris@494 | 37 each other's work, or which you can use to make your work public, or | 
| Chris@494 | 38 simply use as a private backup.</p> | 
| Chris@494 | 39 | 
| Chris@494 | 40 <hr><p><a href="topics.html">Back to Topics</a></p> |