diff options
| author | Robert | 2017-10-11 16:16:23 +0200 |
|---|---|---|
| committer | Robert | 2017-10-11 16:16:23 +0200 |
| commit | 65cbdcc98f247b6e5bc41b74495aa140ddb310ab (patch) | |
| tree | ebf01e2f5c2beeeedad6a53bb15e0983b380c973 /.gitignore | |
| parent | 98861e13d56403e75aa000d62880dcbc34987a37 (diff) | |
| download | chouette-core-65cbdcc98f247b6e5bc41b74495aa140ddb310ab.tar.bz2 | |
Added /bin/spring to .gitignore and removed bin/ from gitignore
Thusly we have:
bin/{rake,rails,rspec,spring} in .gitignore
node_modules/**/bin is covered by node_modules/ in .gitignore
Rationale:
bin contentes needed to be in .gitignore (node and spring) are thusly ignored,
freeing bin/<other> to be shared for (webpack)
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 41d838ee0..02627b2f9 100644 --- a/.gitignore +++ b/.gitignore @@ -30,7 +30,6 @@ coverage # IDE .idea -bin/ # Ignore uploaded files /public/uploads @@ -42,6 +41,7 @@ bin/ /bin/rake /bin/rails /bin/rspec +/bin/spring # FIXME Ignore ./spec/services/zip_service/regression_4273_spec.rb files -/spec/fixtures/target_*.zip
\ No newline at end of file +/spec/fixtures/target_*.zip |
