diff options
author | Seth Chisamore <schisamo@opscode.com> | 2011-12-29 17:51:57 -0500 |
---|---|---|
committer | Seth Chisamore <schisamo@opscode.com> | 2011-12-29 17:51:57 -0500 |
commit | afef412cfe32dafd1f0ed22025674c4b6dec1012 (patch) | |
tree | 4c1f7f810791abd7007d6d5c87c0fddd550f62a1 /.gitignore | |
parent | 255bb0e14c6a9e236d7338db90620dc7f058a77f (diff) | |
download | chef-afef412cfe32dafd1f0ed22025674c4b6dec1012.tar.gz |
update gitignore with more sane defaults
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore index 5372cbc360..82b8f311cc 100644 --- a/.gitignore +++ b/.gitignore @@ -28,13 +28,26 @@ erl_crash.dump .idea features/data/repo/checksums/ *.rbc -.rvmrc -.bundle chef-expander/conf/chef-expander.rb chef-expander/spec/fixtures/expander.log features/data/cookbooks/transfer_remote_files/metadata.json features/data/cookbooks/synchronize_deps/metadata.json features/data/cookbooks_not_uploaded_at_feature_start/*/metadata.json -Gemfile.lock + */tags *~ + +# you should check in your Gemfile.lock in applications, and not in gems +Gemfile.lock + +# Do not check in the .bundle directory, or any of the files inside it. Those files are specific to each particular machine, and are used to persist installation options between runs of the bundle install command. +.bundle + +# ignore some common Bundler 'binstubs' directory names +# http://gembundler.com/man/bundle-exec.1.html +b/ +binstubs/ + +# RVM and RBENV ruby version files +.rbenv-version +.rvmrc |