SIGN IN SIGN UP
github / gitignore UNCLAIMED

A collection of useful .gitignore templates

0 0 1 Ignore List

Ignore *.pid.lock

Some popular applications (for example, Phusion Passenger) leave `*.pid.lock` file(s). For example, when you type `passenger start` with simple express app listening on port 3000, it leaves the following files:

* `passenger.3000.pid` (removed when passenger stops)
* `passenger.3000.log`
* `passenger.3000.pid.lock`

While `*pid` and `*.log` are ignored, `*.pid.lock` remains unignored. Phusion Passenger is quite popular, and `*.pid.lock` file should be ignored.
R
Roman Pushkin committed
55157bfd0e749784fae3f1752242f2c5ac79a891
Parent: e662d21
Committed by GitHub <noreply@github.com> on 7/2/2016, 4:05:05 PM