The .gitignore file tells Git which files and directories to ignore. These files are defined on each line as a pattern.
Note that files already tracked do not get affected by this.
An example of common .gitignore usage is for composer projects along with idea projects that generate generic yet useless files for the library/project scope.
You can also use gitignore to ignore log files.
Simply define the directory you want all the files inside (and subdirectories) to be ignored:
/vendor/ /.idea/
.idea is a PHPstorm directory created for projects.
To ignore individual files:
/config/auth.json
Using wildcards saves you from needing to define every entry.
Ignore all output.log files:
output.log
Using an asterisk matches everything except a slash
*.log
matches every .log file making them ignored.
Not using an asterisk will mean all directories and files with the pattern are ignored.
Comments are done with a hash:
# A comment
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…