Development

The basics to .gitignore

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.

Ignore directories

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.

Ignore files

To ignore individual files:

/config/auth.json

Using wildcards saves you from needing to define every entry.

Ignore all output.log files:

output.log

Ignore certain file type

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

Comments are done with a hash:

# A comment

 

Share
Tags: GitHubHow to

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago