| tierno | 2e21551 | 2018-11-28 09:37:52 +0000 | [diff] [blame] | 1 | ## |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 3 | # not use this file except in compliance with the License. You may obtain |
| 4 | # a copy of the License at |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 10 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 11 | # License for the specific language governing permissions and limitations |
| 12 | # under the License. |
| 13 | ## |
| 14 | |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 15 | # This is a template with common files to be igonored, after clone make a copy to .gitignore |
| 16 | # cp .gitignore-common .gitignore |
| 17 | |
| 18 | *.pyc |
| 19 | *.pyo |
| 20 | |
| 21 | #auto-ignore |
| 22 | .gitignore |
| 23 | |
| 24 | #logs |
| 25 | logs |
| 26 | |
| 27 | #pycharm |
| 28 | .idea |
| 29 | |
| 30 | #eclipse |
| 31 | .project |
| 32 | .pydevproject |
| 33 | .settings |
| 34 | |
| 35 | #local stuff files that end in ".local" or folders called "local" |
| 36 | local |
| tierno | 51d065c | 2019-08-26 16:48:23 +0000 | [diff] [blame] | 37 | osm_lcm/local |
| 38 | osm_lcm/test/local |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 39 | |
| 40 | #local stuff files that end in ".temp" or folders called "temp" |
| 41 | *.temp |
| tierno | 51d065c | 2019-08-26 16:48:23 +0000 | [diff] [blame] | 42 | osm_lcm/temp |
| 43 | osm_lcm/test/temp |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 44 | |
| 45 | #distribution and package generation |
| 46 | build |
| 47 | dist |
| 48 | *.egg-info |
| tierno | fa66d15 | 2018-08-28 10:13:45 +0000 | [diff] [blame] | 49 | .eggs |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 50 | |