Skip to content

Commit e465ee7

Browse files
committed
ci(git): ignore files that may contain secrets
1 parent f7c993c commit e465ee7

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed

.gitignore

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Linux
88
# =========================
99

10+
.config/
1011
*.bak
1112
*~
1213
\#*\#
@@ -65,12 +66,45 @@ $RECYCLE.BIN/
6566

6667
# AWS
6768
.aws/
69+
aws_credentials.json
70+
aws_config.json
6871

6972
# Azure
7073
.azure/
74+
azureProfile.json
75+
accessTokens.json
76+
azure.json
77+
78+
# GCP
79+
.gcloud/
80+
.google-cloud/
81+
application_default_credentials.json
82+
service-account.json
83+
*.serviceAccount.json
84+
*.gcp.json
85+
.gcp/
86+
.firebase/
87+
firebase.json
88+
.firebaserc
89+
serviceAccountKey.json
90+
91+
# IBM Cloud / DigitalOcean / Oracle
92+
.ibmcloud/
93+
.bluemix/
94+
.doctl/
95+
.oci/
96+
cloud_config.json
97+
98+
# NPM
99+
npm-debug.log
100+
.npmrc
101+
102+
# PIP
103+
.pypirc
71104

72105
# Docker
73106
.docker/
107+
.dockerignore
74108

75109
# Git
76110
.git-credentials
@@ -80,9 +114,67 @@ $RECYCLE.BIN/
80114

81115
# SSH
82116
.ssh/
117+
*.pem
118+
*.key
119+
*.pub
120+
id_rsa
121+
id_rsa.pub
122+
id_dsa
123+
id_ecdsa
124+
id_ed25519
125+
*.cert
126+
*.csr
127+
128+
# PGP / GPG
129+
*.asc
130+
*.gpg
131+
*.pgp
83132

84133
# Remote Desktop
85134
*.rdp
86135

87136
# SARIF files
88137
*.sarif
138+
139+
# AI
140+
# =========================
141+
142+
# Claude CLI
143+
.claude/
144+
claude.json
145+
claude.config.json
146+
.claude_history/
147+
148+
# Gemini CLI
149+
.gemini/
150+
gemini.json
151+
.gemini_history/
152+
.google-genai/
153+
vertexai_config.json
154+
155+
# OpenAI CLI
156+
.openai/
157+
.openai_history/
158+
.cache/
159+
160+
# GitHub Copilot
161+
.copilot/
162+
copilot.log
163+
.copilot-history.json
164+
165+
# Hugging Face
166+
.huggingface/
167+
.cache/huggingface/
168+
huggingface-cli.log
169+
170+
# Ollama
171+
.ollama/
172+
ollama.yaml
173+
.ollama_history/
174+
175+
# LangChain / LlamaIndex
176+
.langchain/
177+
.llamaindex/
178+
.env
179+
*.log
180+
*.tmp

0 commit comments

Comments
 (0)