Reputation: 1525
I would like to ignore whole 'public' folder, I added this manually to my gitIgnore file, but still when I commit I can see things from this folder. How to do to file gitignore start ignore this?
My gitignore looks like this:
/vendor
/node_modules
.env
composer.lock
/public
/.idea
.phpstorm.meta.php
_ide_helper.php
npm-debug.log
package-lock.json
.gitattributes
Upvotes: 2
Views: 5744
Reputation: 1707
The simplest way to do it:
Upvotes: 5