diff options
author | Wayne Nilsen <waynenilsen@gmail.com> | 2015-11-13 06:05:10 -0500 |
---|---|---|
committer | Wayne Nilsen <waynenilsen@gmail.com> | 2015-11-13 06:05:10 -0500 |
commit | cd3de4966970bb453ca72b19e25db48f39a97e21 (patch) | |
tree | 1942219023c0d60ec1e9af8f6352345b260367ac | |
parent | 3d6f6f82101bcc6d79216c74a2bd1e7d61cfcda7 (diff) | |
download | gitignore-cd3de4966970bb453ca72b19e25db48f39a97e21.tar.gz gitignore-cd3de4966970bb453ca72b19e25db48f39a97e21.zip |
add Cargo.lock to gitignore file by default
See the [official recommendation](http://doc.crates.io/guide.html#cargotoml-vs-cargolock)
> * If you're building a library, put Cargo.lock in your .gitignore.
> * If you're building an executable, check Cargo.lock into git.
-rw-r--r-- | Rust.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Rust.gitignore b/Rust.gitignore index 37727f91..94408df6 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -9,3 +9,4 @@ # Generated by Cargo /target/ +Cargo.lock |