Skip to content

Updated .gitignore to be more specific #342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
# This file only excludes files that are specific to this repository. Please setup your own global
# `.gitignore` file to exclude files that are specific to your operating system and IDE.
#
# From https://git-scm.com/docs/gitignore:
#
# > Patterns which a user wants Git to ignore in all situations (e.g., backup or temporary files
# > generated by the user’s editor of choice) generally go into a file specified by
# > `core.excludesFile` in the user’s `~/.gitconfig`.
#
# Discussed in PR https://github.com/rustls/rcgen/pull/342

# Rust and Cargo
/target
**/*.rs.bk

# Project
certs/
.idea
Loading