22301080 | a033473 | 2025-05-17 21:38:32 +0800 | [diff] [blame] | 1 | # Git ignore patterns |
2 | # Author: Maxime Petazzoni <mpetazzoni@turn.com> | ||||
3 | |||||
4 | # Ignore build output | ||||
5 | /build/* | ||||
6 | */build | ||||
7 | |||||
8 | # Ignore Javadoc output | ||||
9 | /doc/* | ||||
10 | |||||
11 | # Ignore any eventual Eclipse project files, these don't belong in the | ||||
12 | # repository. | ||||
13 | /.classpath | ||||
14 | /.project | ||||
15 | /.settings | ||||
16 | /.idea/workspace.xml | ||||
17 | # Ignore common editor swap files | ||||
18 | *.swp | ||||
19 | *.bak | ||||
20 | *~ | ||||
21 | *~ | ||||
22 | |||||
23 | #ignore idea workspace file and idea module files | ||||
24 | *.iml | ||||
25 | .idea/workspace.xml |