-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
41 lines (31 loc) · 760 Bytes
/
.gitignore
File metadata and controls
41 lines (31 loc) · 760 Bytes
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
37
38
39
40
41
# Ignore the standard editor backups
*~
*.swp
*.swo
# Ignore files generated by the shell script
*.log
*.tmp
*.bak
# Ignore directories created by common tools or IDEs
.idea/
.vscode/
# Ignore the directory where some scripts might generate temporary files
tmp/
temp/
# Ignore any file that ends with .env (often used for environment variables)
*.env
# Ignore files related to specific tools
*.out
*.pid
# Ignore compiled shell scripts or binary files
*.out
# Ignore local environment configuration files
.local/
# Ignore any personal files or configurations
*.personal
# Ignore backup files created by editors
*.bak
*.old
# Ignore specific files or directories if needed
# For example, ignore a directory named 'backup' and all its contents
backup/