diff options
| author | Pk-web6936 <202365630+Pk-web6936@users.noreply.github.com> | 2025-03-30 07:32:42 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-30 07:32:42 +0300 |
| commit | 7c58bcbb46f73f5307a955ef097002ebbc5fe4fd (patch) | |
| tree | 580392bc2ec3dd6394f84072ffd4089a9802ce4b | |
| parent | fec9b252480786077f9c6ab934fcbd8ed435e320 (diff) | |
Consolidate and Optimize .gitignore Files (#2838)
* Update .gitignore
| -rw-r--r-- | .gitignore | 35 |
1 files changed, 29 insertions, 6 deletions
@@ -1,16 +1,39 @@ -.idea -.vscode -.cache +# Ignore editor and IDE settings +.idea/ +.vscode/ +.cache/ .sync* -*.tar.gz + +# Ignore log files *.log access.log error.log -tmp -main + +# Ignore temporary files +tmp/ +*.tar.gz + +# Ignore build and distribution directories backup/ bin/ dist/ release/ +node_modules/ + +# Ignore compiled binaries +main + +# Ignore script and executable files /release.sh /x-ui + +# Ignore OS specific files +.DS_Store +Thumbs.db + +# Ignore Go specific files +*.exe +*.exe~ + +# Ignore Docker specific files +docker-compose.override.yml |
