-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
36 lines (27 loc) · 1 KB
/
.gitignore
File metadata and controls
36 lines (27 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#gitignore - Specifies intentionally untracked files to ignore
#A gitignore file specifies intentionally untracked files that Git should ignore.
# Ignore log files
*.log
# Ignore database configuration file
assignment-4-API-building/db_config.py
# Note: If this file is still being pushed to GitHub, it might be because:
# 1. The file was already tracked before adding it to .gitignore
# 2. The .gitignore file itself hasn't been committed and pushed
# 3. There might be caching issues with Git
# To fix this:
# 1. Remove the file from Git tracking: git rm --cached db_config.py
# 2. Commit the changes: git commit -m "Remove db_config.py from tracking"
# 3. Push the changes: git push
# 4. Ensure .gitignore is committed and pushed
# 5. If issues persist, try clearing Git cache: git rm -r --cached .
# Ignore temporary files created by editors
*.swp
.vscode/
# Ignore environment-specific files
.env
*.pyc
# Ignore dependency directories
node_modules/
venv/
#For more details:
#https://git-scm.com/docs/gitignore/en