mirror of
https://github.com/github/gitignore
synced 2024-11-22 19:54:22 +01:00
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.
This commit is contained in:
parent
e662d21883
commit
55157bfd0e
@ -7,6 +7,7 @@ npm-debug.log*
|
|||||||
pids
|
pids
|
||||||
*.pid
|
*.pid
|
||||||
*.seed
|
*.seed
|
||||||
|
*.pid.lock
|
||||||
|
|
||||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||||
lib-cov
|
lib-cov
|
||||||
|
Loading…
Reference in New Issue
Block a user