.. index:: single: Workflow; Git
Tip
Though this entry is specifically about git, the same generic principles will apply if you're storing your project in Subversion.
Once you've read through :doc:`/book/page_creation` and become familiar with using Symfony, you'll no-doubt be ready to start your own project. In this cookbook article, you'll learn the best way to start a new Symfony2 project that's stored using the git source control management system.
To get started, you'll need to download Symfony and initialize your local git repository:
Download the Symfony2 Standard Edition without vendors.
Unzip/untar the distribution. It will create a folder called Symfony with your new project structure, config files, etc. Rename it to whatever you like.
Create a new file called
.gitignore
at the root of your new project (e.g. next to thecomposer.json
file) and paste the following into it. Files matching these patterns will be ignored by git:/web/bundles/ /app/bootstrap* /app/cache/* /app/logs/* /vendor/ /app/config/parameters.yml
Tip
You may also want to create a .gitignore file that can be used system-wide, in which case, you can find more information here: Github .gitignore This way you can exclude files/folders often used by your IDE for all of your projects.
Copy
app/config/parameters.yml
toapp/config/parameters.yml.dist
. Theparameters.yml
file is ignored by git (see above) so that machine-specific settings like database passwords aren't committed. By creating theparameters.yml.dist
file, new developers can quickly clone the project, copy this file toparameters.yml
, customize it, and start developing.Initialize your git repository:
$ git init
Add all of the initial files to git:
$ git add .
Create an initial commit with your started project:
$ git commit -m "Initial commit"
Finally, download all of the third-party vendor libraries by executing composer. For details, see :ref:`installation-updating-vendors`.
At this point, you have a fully-functional Symfony2 project that's correctly committed to git. You can immediately begin development, committing the new changes to your git repository.
You can continue to follow along with the :doc:`/book/page_creation` chapter to learn more about how to configure and develop inside your application.
Tip
The Symfony2 Standard Edition comes with some example functionality. To remove the sample code, follow the instructions in the ":doc:`/cookbook/bundles/remove`" article.
Instead of using the composer.json
system for managing your vendor
libraries, you may instead choose to use native git submodules. There
is nothing wrong with this approach, though the composer.json
system
is the official way to solve this problem and probably much easier to
deal with. Unlike git submodules, Composer
is smart enough to calculate
which libraries depend on which other libraries.
You now have a fully-functional Symfony2 project stored in git. However, in most cases, you'll also want to store your project on a remote server both for backup purposes, and so that other developers can collaborate on the project.
The easiest way to store your project on a remote server is via GitHub. Public repositories are free, however you will need to pay a monthly fee to host private repositories.
Alternatively, you can store your git repository on any server by creating a barebones repository and then pushing to it. One library that helps manage this is Gitolite.