Skip to content

Commit 55157bf

Browse files
authored
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.
1 parent e662d21 commit 55157bf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Node.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ npm-debug.log*
77
pids
88
*.pid
99
*.seed
10+
*.pid.lock
1011

1112
# Directory for instrumented libs generated by jscoverage/JSCover
1213
lib-cov

0 commit comments

Comments
 (0)