Laravel-debugbar: Git Ignore

Created on 5 Aug 2014  路  6Comments  路  Source: barryvdh/laravel-debugbar

I have question which happens after setting laravel-debugbar.

when I did git status

It had the following as untracked files

app/storage/debugbar/
public/packages/barryvdh/
public/packages/maximebf/

I'm unsure as what is the best practice in this situation so,
Should I add them to the repository or just ignore them and put it the .gitignore?

Most helpful comment

@barryvdh Dead link.

All 6 comments

If I were you, I'd add them to the .gitignore.

Especially the storage folder. There's no way you'd want to commit that.

The files in the debugbar storage folder should be gitignored already (see https://github.com/barryvdh/laravel-debugbar/blob/master/src/Barryvdh/Debugbar/Storage/FilesystemStorage.php#L36)

You can ignore the assets if you only use the debugbar in development, no need to track them, unless you want to run it in production.

Thanks for the fast reply @GrahamCampbell and @barryvdh

@barryvdh Dead link.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

coderdiaz picture coderdiaz  路  4Comments

ddmo picture ddmo  路  3Comments

damienfern picture damienfern  路  4Comments

lucasdcrk picture lucasdcrk  路  3Comments

kjhatis picture kjhatis  路  5Comments