Skip to content

Commit 2cdb7b5

Browse files
Johannes Ballécopybara-github
authored andcommitted
Adds a few more common patterns to .gitignore.
PiperOrigin-RevId: 358712763 Change-Id: Ibbee460888ce8a6ecb1aae85b1cef7d9c4ca2f31
1 parent 0c0e40f commit 2cdb7b5

File tree

1 file changed

+35
-4
lines changed

1 file changed

+35
-4
lines changed

.gitignore

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,38 @@
1-
.DS_Store
2-
*.pyc
3-
*.so
1+
# backup files
42
*~
53

6-
# Ignore bazel-* symlinks.
4+
# Python byte code, etc.
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# type checkers
10+
.pyre/
11+
.pytype/
12+
13+
# C/C++ object files/libraries
14+
*.slo
15+
*.lo
16+
*.o
17+
*.obj
18+
*.so
19+
*.dylib
20+
*.dll
21+
*.lai
22+
*.la
23+
*.a
24+
*.lib
25+
26+
# bazel symlinks
727
/bazel-*
28+
29+
# Jupyter notebook
30+
.ipynb_checkpoints
31+
profile_default/
32+
ipython_config.py
33+
34+
# macOS
35+
.DS_Store
36+
.AppleDouble
37+
.LSOverride
38+
._*

0 commit comments

Comments
 (0)