I added a Laravel App under Git so that I could push to Bitbucket. On root folder, I ran git add -A
and pushed on remote server. I checked that it did not send all folders; for instance, it did not add vendor
folder at all. How do I make sure that all subfolders are added? When I run git status
, it says:
# On branch master
nothing to commit, working directory clean
Update
I ran git status --ignore
and found the following files listed:
stocktrack/app/storage/logs/laravel.log
stocktrack/app/storage/meta/services.json
stocktrack/app/storage/sessions/cdf664ccf42d040bc92d76418f736cc78e20d77a
stocktrack/app/storage/views/81774cd762e1fa0174ad42e0b0d53196
stocktrack/bootstrap/compiled.php
stocktrack/composer.lock
stocktrack/vendor/
In .gitignore
, I only added .idea
. Why did it ignore the others?