Skip to content

Commit 4b18545

Browse files
committed
ci(git): ignore files that may contain secrets
1 parent f21107a commit 4b18545

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
@@ -116,6 +116,7 @@ hs_err_pid*
116116
# Linux
117117
# =========================
118118

119+
.config/
119120
*.bak
120121
*~
121122
\#*\#
@@ -174,12 +175,45 @@ $RECYCLE.BIN/
174175

175176
# AWS
176177
.aws/
178+
aws_credentials.json
179+
aws_config.json
177180

178181
# Azure
179182
.azure/
183+
azureProfile.json
184+
accessTokens.json
185+
azure.json
186+
187+
# GCP
188+
.gcloud/
189+
.google-cloud/
190+
application_default_credentials.json
191+
service-account.json
192+
*.serviceAccount.json
193+
*.gcp.json
194+
.gcp/
195+
.firebase/
196+
firebase.json
197+
.firebaserc
198+
serviceAccountKey.json
199+
200+
# IBM Cloud / DigitalOcean / Oracle
201+
.ibmcloud/
202+
.bluemix/
203+
.doctl/
204+
.oci/
205+
cloud_config.json
206+
207+
# NPM
208+
npm-debug.log
209+
.npmrc
210+
211+
# PIP
212+
.pypirc
180213

181214
# Docker
182215
.docker/
216+
.dockerignore
183217

184218
# Git
185219
.git-credentials
@@ -189,9 +223,67 @@ $RECYCLE.BIN/
189223

190224
# SSH
191225
.ssh/
226+
*.pem
227+
*.key
228+
*.pub
229+
id_rsa
230+
id_rsa.pub
231+
id_dsa
232+
id_ecdsa
233+
id_ed25519
234+
*.cert
235+
*.csr
236+
237+
# PGP / GPG
238+
*.asc
239+
*.gpg
240+
*.pgp
192241

193242
# Remote Desktop
194243
*.rdp
195244

196245
# SARIF files
197246
*.sarif
247+
248+
# AI
249+
# =========================
250+
251+
# Claude CLI
252+
.claude/
253+
claude.json
254+
claude.config.json
255+
.claude_history/
256+
257+
# Gemini CLI
258+
.gemini/
259+
gemini.json
260+
.gemini_history/
261+
.google-genai/
262+
vertexai_config.json
263+
264+
# OpenAI CLI
265+
.openai/
266+
.openai_history/
267+
.cache/
268+
269+
# GitHub Copilot
270+
.copilot/
271+
copilot.log
272+
.copilot-history.json
273+
274+
# Hugging Face
275+
.huggingface/
276+
.cache/huggingface/
277+
huggingface-cli.log
278+
279+
# Ollama
280+
.ollama/
281+
ollama.yaml
282+
.ollama_history/
283+
284+
# LangChain / LlamaIndex
285+
.langchain/
286+
.llamaindex/
287+
.env
288+
*.log
289+
*.tmp

0 commit comments

Comments
 (0)