1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
__init__.py
*.pyc
.*.swp
.#*
#*#
*~
*.pb
# ignore partially applied patches and their backup
*.rej
*.orig
# ignore files under the top level $CMSSW_BASE/src directory, but not its subdirectories
/*
!/*/
# ignore some IDE related files
*.xcodeproj
.vscode
#ignore mac specific file
.DS_Store
|