Versioning refers to saving new copies of your files when you make changes so that you can go back and retrieve specific versions of your files later.
When creating new versions of your files, record what changes are being made to the files and give the new files a unique name. Follow the general advice on the site for naming files, but also consider the following:
One simple way to version files is to manually save new versions when you make significant changes. This works well if:
The directory below shows multiple versions of a web page mock-up called DMSSiteHome.jpg. Note the use of v1, v2, etc. to indicate versions. The notations "FISH" and "SandC" indicate different images that were swapped into some versions, i.e. major changes that were made.
Saving multiple versions makes it possible to decide at a later time that you prefer an earlier version. You can then immediately revert back to that version instead of having to retrace your steps to recreate it.
This method of versioning requires that you remember to save new versions when it is appropriate. This method can become confusing when collaborating on a document with multiple people.
Google Drive's word processing, spreadsheet, and presentation software automatically create versions as you edit.
Pros: The real-time editing feature means that Google Drive works well for collaborating on files with multiple people. And because the files are on Google Drive, they are accessible from anywhere.
Cons: You are restricted to the software provided by Google, which may not have all the bells and whistles of your desktop word processing, spreadsheet, or presentation software. In addition, Google does something called "version pruning." As the document ages, fewer of the older versions are saved, making it harder to return to a specific state. Intentionally saving significant versions can help to alleviate this problem.
More: Find out more about using Google Drive for Stanford.
If you have more sophisticated version control needs, you might consider a distributed version control system like git. Files are kept in a repository. Users clone copies of the repository for editing and commit changes back to the repository when they are done.
Version control systems like git are frequently used for groups writing software and code, but can be used for any kind of files or projects. Many people share their git repositories on GitHub.