Skip to content

Commit b00b806

Browse files
committed
ci(git): ignore files that may contain secrets
1 parent 7a4f17f commit b00b806

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
@@ -27,6 +27,7 @@ nytprof.out
2727
# Linux
2828
# =========================
2929

30+
.config/
3031
*.bak
3132
*~
3233
\#*\#
@@ -85,12 +86,45 @@ $RECYCLE.BIN/
8586

8687
# AWS
8788
.aws/
89+
aws_credentials.json
90+
aws_config.json
8891

8992
# Azure
9093
.azure/
94+
azureProfile.json
95+
accessTokens.json
96+
azure.json
97+
98+
# GCP
99+
.gcloud/
100+
.google-cloud/
101+
application_default_credentials.json
102+
service-account.json
103+
*.serviceAccount.json
104+
*.gcp.json
105+
.gcp/
106+
.firebase/
107+
firebase.json
108+
.firebaserc
109+
serviceAccountKey.json
110+
111+
# IBM Cloud / DigitalOcean / Oracle
112+
.ibmcloud/
113+
.bluemix/
114+
.doctl/
115+
.oci/
116+
cloud_config.json
117+
118+
# NPM
119+
npm-debug.log
120+
.npmrc
121+
122+
# PIP
123+
.pypirc
91124

92125
# Docker
93126
.docker/
127+
.dockerignore
94128

95129
# Git
96130
.git-credentials
@@ -100,9 +134,67 @@ $RECYCLE.BIN/
100134

101135
# SSH
102136
.ssh/
137+
*.pem
138+
*.key
139+
*.pub
140+
id_rsa
141+
id_rsa.pub
142+
id_dsa
143+
id_ecdsa
144+
id_ed25519
145+
*.cert
146+
*.csr
147+
148+
# PGP / GPG
149+
*.asc
150+
*.gpg
151+
*.pgp
103152

104153
# Remote Desktop
105154
*.rdp
106155

107156
# SARIF files
108157
*.sarif
158+
159+
# AI
160+
# =========================
161+
162+
# Claude CLI
163+
.claude/
164+
claude.json
165+
claude.config.json
166+
.claude_history/
167+
168+
# Gemini CLI
169+
.gemini/
170+
gemini.json
171+
.gemini_history/
172+
.google-genai/
173+
vertexai_config.json
174+
175+
# OpenAI CLI
176+
.openai/
177+
.openai_history/
178+
.cache/
179+
180+
# GitHub Copilot
181+
.copilot/
182+
copilot.log
183+
.copilot-history.json
184+
185+
# Hugging Face
186+
.huggingface/
187+
.cache/huggingface/
188+
huggingface-cli.log
189+
190+
# Ollama
191+
.ollama/
192+
ollama.yaml
193+
.ollama_history/
194+
195+
# LangChain / LlamaIndex
196+
.langchain/
197+
.llamaindex/
198+
.env
199+
*.log
200+
*.tmp

0 commit comments

Comments
 (0)