| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1 | # This is a template with common files to be igonored, after clone make a copy to .gitignore |
| 2 | # cp .gitignore-common .gitignore |
| 3 | |
| 4 | *.pyc |
| 5 | *.pyo |
| 6 | |
| 7 | #auto-ignore |
| 8 | .gitignore |
| 9 | |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 10 | #logs |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 11 | logs |
| 12 | |
| 13 | #pycharm |
| 14 | .idea |
| 15 | |
| 16 | #eclipse |
| 17 | .project |
| 18 | .pydevproject |
| 19 | .settings |
| 20 | |
| 21 | #local stuff files that end in ".local" or folders called "local" |
| tierno | dfe0957 | 2018-04-24 10:41:10 +0200 | [diff] [blame] | 22 | local |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 23 | osm_nbi/local |
| 24 | osm_nbi/test/local |
| 25 | |
| 26 | #local stuff files that end in ".temp" or folders called "temp" |
| 27 | *.temp |
| 28 | osm_nbi/temp |
| 29 | osm_nbi/test/temp |
| 30 | |
| tierno | dfe0957 | 2018-04-24 10:41:10 +0200 | [diff] [blame] | 31 | #distribution and package generation |
| 32 | build |
| 33 | dist |
| 34 | *.egg-info |
| tierno | b7c6f2a | 2018-09-03 14:32:10 +0200 | [diff] [blame] | 35 | .eggs |