]> source.dussan.org Git - gitignore.git/commitdiff
Ignore *.pid.lock 2034/head
authorRoman Pushkin <roman.pushkin@gmail.com>
Sat, 2 Jul 2016 16:05:05 +0000 (09:05 -0700)
committerGitHub <noreply@github.com>
Sat, 2 Jul 2016 16:05:05 +0000 (09:05 -0700)
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.

Node.gitignore

index 5148e527a7e286a1efcc44d65a7f8241267dce9b..aea5294de9dca6cd0f3edbaab53aab540c7020ca 100644 (file)
@@ -7,6 +7,7 @@ npm-debug.log*
 pids
 *.pid
 *.seed
+*.pid.lock
 
 # Directory for instrumented libs generated by jscoverage/JSCover
 lib-cov