ソースを参照

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.
pull/2034/head
Roman Pushkin 8年前
コミット
55157bfd0e
1個のファイルの変更1行の追加0行の削除
  1. 1
    0
      Node.gitignore

+ 1
- 0
Node.gitignore ファイルの表示

@@ -7,6 +7,7 @@ npm-debug.log*
pids
*.pid
*.seed
*.pid.lock

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

読み込み中…
キャンセル
保存