Which files/directories to ignore in a Laravel 4 project when using version control?

前端 未结 5 602
孤独总比滥情好
孤独总比滥情好 2021-01-30 21:00

I have a Laravel 4 project, and I would like to know which files should be ignored when using a version control software such as Git, Mercury or SVN?

The structure of my

5条回答
  •  忘了有多久
    2021-01-30 21:29

    Laravel has posted their .gitignore on GitHub, which can be found here.

    As of today, it looks like this:

    /bootstrap/compiled.php
    /vendor
    composer.phar
    composer.lock
    .env.*.php
    .env.php
    .DS_Store
    Thumbs.db
    

提交回复
热议问题