Created
March 29, 2018 04:07
-
-
Save davebeach/d9ad50a59eda21c4e52144ba2f7316d5 to your computer and use it in GitHub Desktop.
Exclude Confidential Files to Be sent to git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################### | |
# AWS CLI credential blobs | |
##################### | |
.aws/credentials | |
aws/credentials | |
homefolder/aws/credentials | |
##################### | |
# Private RSA SSH keys | |
##################### | |
/ssh/id_rsa | |
/.ssh/personal_rsa | |
/config/server_rsa | |
id_rsa | |
.id_rsa | |
##################### | |
# Private DSA SSH keys | |
##################### | |
/ssh/id_dsa | |
/.ssh/personal_dsa | |
/config/server_dsa | |
id_dsa | |
.id_dsa | |
##################### | |
# Private ed25519 SSH keys | |
##################### | |
/ssh/id_ed25519 | |
/.ssh/personal_ed25519 | |
/config/server_ed25519 | |
id_ed25519 | |
.id_ed25519 | |
##################### | |
# Private ECDSA SSH keys | |
##################### | |
/ssh/id_ecdsa | |
/.ssh/personal_ecdsa | |
/config/server_ecdsa | |
id_ecdsa | |
.id_ecdsa | |
##################### | |
# Any file with .pem or .key extensions | |
##################### | |
*.pem | |
*.key | |
##################### | |
# Any file ending with _history or .history extension | |
##################### | |
pry.history | |
bash_history |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment