diff options
| author | copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> | 2026-02-11 10:04:32 +0000 |
|---|---|---|
| committer | copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> | 2026-02-11 10:04:32 +0000 |
| commit | ceb342a61b920fed4fbea2fea6e1c437a8272aee (patch) | |
| tree | b22a420df7a70a67b11ab37a2c1b1528ad183f08 /.gitignore | |
| parent | acfb1c85e1f2750b1e5d07f078c6e03b4408c766 (diff) | |
| download | accelerator-installer-ceb342a61b920fed4fbea2fea6e1c437a8272aee.tar.gz accelerator-installer-ceb342a61b920fed4fbea2fea6e1c437a8272aee.zip | |
Add .gitignore and remove pycache files
Co-authored-by: tranch <5999732+tranch@users.noreply.github.com>
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..782e811 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +dist/ +build/ +*.egg + +# Testing +.pytest_cache/ +.coverage +htmlcov/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Logs +*.log |
