Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 1.54 KB

version_control.md

File metadata and controls

31 lines (18 loc) · 1.54 KB

Version Control

GitHub

Instead of downloading an archive you could clone the source code from GitHub. There are a few advantages; First of all, in this way you will always have the latest bugfixes, even before they are available in a release.

Secondly, version control makes it easy to upgrade your code, even when you made some custom changes in the core of Fork CMS. Only database changes can not be handled (yet).

If you're not familiar with git or github yet, here are some good resources to get you started:

Specially check out the guide about forking a project. (Fork in this context has nothing to do with our name.)

Composer

Instead of copying all code from other repositories, Composer is used to manage the dependencies. Make sure Composer is installed on your machine.

In Terminal on Mac OS X or in Command Prompt on Windows, go to the root of your project folder and execute the command:

composer install

All dependencies are now installed in the vendors folder.

Go through the upgrading guide to find out how you can keep your setup up-to-date with Git.