Merge lp:~sampablokuper/mnemosyne-proj/gitignore into lp:~peter-bienstman/mnemosyne-proj/trunk

Proposed by sampablokuper
Status: Merged
Merged at revision: 1946
Proposed branch: lp:~sampablokuper/mnemosyne-proj/gitignore
Merge into: lp:~peter-bienstman/mnemosyne-proj/trunk
Diff against target: 432 lines (+327/-43)
2 files modified
.bzrignore (+137/-43)
.gitignore (+190/-0)
To merge this branch: bzr merge lp:~sampablokuper/mnemosyne-proj/gitignore
Reviewer Review Type Date Requested Status
Peter Bienstman Pending
Review via email: mp+297644@code.launchpad.net

Description of the change

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.bzrignore'
2--- .bzrignore 2016-04-10 14:02:22 +0000
3+++ .bzrignore 2016-06-16 15:34:54 +0000
4@@ -1,96 +1,190 @@
5-# Created by https://www.gitignore.io/api/android,intellij
6+# Ignore files and directories created by the following commands:
7+#
8+# `make`
9+# `make setup`
10+# `make test`
11+# `make coverage`
12+
13+.coverage
14+dot_sync_A/
15+dot_sync_B/
16+dot_sync_C/
17+dot_sync_client/
18+dot_sync_server/
19+dot_test/
20+htmlcov/
21+mnemosyne/Mnemosyne.egg-info/
22+mnemosyne/bin/
23+mnemosyne/dot_mnemosyne2/
24+mnemosyne/include/
25+mnemosyne/lib/
26+mnemosyne/local/
27+mnemosyne/mnemosyne/**/*.pyc
28+mnemosyne/mnemosyne/pyqt_ui/mnemosyne_rc.py
29+mnemosyne/mnemosyne/pyqt_ui/tmp
30+mnemosyne/mnemosyne/pyqt_ui/ui_*
31+mnemosyne/mo/
32+mnemosyne/openSM2sync/**/*.pyc
33+mnemosyne/tests/**/*.pyc
34+mnemosyne/tests/files/basedir_to_merge/to_merge.db-journal
35+outside.db
36+outside.db-journal
37+
38+
39+# Created by https://www.gitignore.io/api/android,emacs,intellij,vim
40
41 ### Android ###
42 # Built application files
43-**/android/**/*.apk
44-**/android/**/*.ap_
45+*.apk
46+*.ap_
47
48-# Files for the Dalvik VM
49-**/android/**/*.dex
50+# Files for the ART/Dalvik VM
51+*.dex
52
53 # Java class files
54-**/android/**/*.class
55+*.class
56
57 # Generated files
58-**/android/**/bin/
59-**/android/**/gen/
60-**/android/**/out/
61+bin/
62+gen/
63+out/
64
65 # Gradle files
66-**/android/**/.gradle/
67-**/android/**/build/
68+.gradle/
69+build/
70
71 # Local configuration file (sdk path, etc)
72-**/android/**/local.properties
73+local.properties
74
75 # Proguard folder generated by Eclipse
76-**/android/**/proguard/
77+proguard/
78
79 # Log Files
80-**/android/**/*.log
81+*.log
82
83 # Android Studio Navigation editor temp files
84-**/android/**/.navigation/
85+.navigation/
86
87 # Android Studio captures folder
88-**/android/**/captures/
89+captures/
90
91 # Intellij
92-**/android/**/*.iml
93+*.iml
94+.idea/workspace.xml
95
96 # Keystore files
97-**/android/**/*.jks
98+*.jks
99
100 ### Android Patch ###
101-**/android/**/gen-external-apklibs
102-
103+gen-external-apklibs
104+
105+
106+### Emacs ###
107+# -*- mode: gitignore; -*-
108+*~
109+\#*\#
110+/.emacs.desktop
111+/.emacs.desktop.lock
112+*.elc
113+auto-save-list
114+tramp
115+.\#*
116+
117+# Org-mode
118+.org-id-locations
119+*_archive
120+
121+# flymake-mode
122+*_flymake.*
123+
124+# eshell files
125+/eshell/history
126+/eshell/lastdir
127+
128+# elpa packages
129+/elpa/
130+
131+# reftex files
132+*.rel
133+
134+# AUCTeX auto folder
135+/auto/
136+
137+# cask packages
138+.cask/
139+dist/
140+
141+# Flycheck
142+flycheck_*.el
143+
144+# server auth directory
145+/server/
146+
147+# projectiles files
148+.projectile
149
150 ### Intellij ###
151 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
152 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
153
154 # User-specific stuff:
155-**/android/.idea/workspace.xml
156-**/android/.idea/tasks.xml
157-**/android/.idea/dictionaries
158-**/android/.idea/vcs.xml
159-**/android/.idea/jsLibraryMappings.xml
160+.idea/workspace.xml
161+.idea/tasks.xml
162+.idea/dictionaries
163+.idea/vcs.xml
164+.idea/jsLibraryMappings.xml
165
166 # Sensitive or high-churn files:
167-**/android/.idea/dataSources.ids
168-**/android/.idea/dataSources.xml
169-**/android/.idea/dataSources.local.xml
170-**/android/.idea/sqlDataSources.xml
171-**/android/.idea/dynamic.xml
172-**/android/.idea/uiDesigner.xml
173+.idea/dataSources.ids
174+.idea/dataSources.xml
175+.idea/dataSources.local.xml
176+.idea/sqlDataSources.xml
177+.idea/dynamic.xml
178+.idea/uiDesigner.xml
179
180 # Gradle:
181-**/android/.idea/gradle.xml
182-**/android/.idea/libraries
183+.idea/gradle.xml
184+.idea/libraries
185
186 # Mongo Explorer plugin:
187-**/android/.idea/mongoSettings.xml
188+.idea/mongoSettings.xml
189
190 ## File-based project format:
191-**/android/*.iws
192+*.iws
193
194 ## Plugin-specific files:
195
196 # IntelliJ
197-**/android/out/
198+/out/
199
200 # mpeltonen/sbt-idea plugin
201-**/android/.idea_modules/
202+.idea_modules/
203
204 # JIRA plugin
205-**/android/atlassian-ide-plugin.xml
206+atlassian-ide-plugin.xml
207
208 # Crashlytics plugin (for Android Studio and IntelliJ)
209-**/android/com_crashlytics_export_strings.xml
210-**/android/crashlytics.properties
211-**/android/crashlytics-build.properties
212-**/android/fabric.properties
213+com_crashlytics_export_strings.xml
214+crashlytics.properties
215+crashlytics-build.properties
216+fabric.properties
217
218 ### Intellij Patch ###
219-**/android/**/*.iml
220+# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
221+
222+# *.iml
223+# modules.xml
224+
225+
226+### Vim ###
227+# swap
228+[._]*.s[a-w][a-z]
229+[._]s[a-w][a-z]
230+# session
231+Session.vim
232+# temporary
233+.netrwhist
234+*~
235+# auto-generated tag files
236+tags
237
238
239=== added file '.gitignore'
240--- .gitignore 1970-01-01 00:00:00 +0000
241+++ .gitignore 2016-06-16 15:34:54 +0000
242@@ -0,0 +1,190 @@
243+# Ignore files and directories created by the following commands:
244+#
245+# `make`
246+# `make setup`
247+# `make test`
248+# `make coverage`
249+
250+.coverage
251+dot_sync_A/
252+dot_sync_B/
253+dot_sync_C/
254+dot_sync_client/
255+dot_sync_server/
256+dot_test/
257+htmlcov/
258+mnemosyne/Mnemosyne.egg-info/
259+mnemosyne/bin/
260+mnemosyne/dot_mnemosyne2/
261+mnemosyne/include/
262+mnemosyne/lib/
263+mnemosyne/local/
264+mnemosyne/mnemosyne/**/*.pyc
265+mnemosyne/mnemosyne/pyqt_ui/mnemosyne_rc.py
266+mnemosyne/mnemosyne/pyqt_ui/tmp
267+mnemosyne/mnemosyne/pyqt_ui/ui_*
268+mnemosyne/mo/
269+mnemosyne/openSM2sync/**/*.pyc
270+mnemosyne/tests/**/*.pyc
271+mnemosyne/tests/files/basedir_to_merge/to_merge.db-journal
272+outside.db
273+outside.db-journal
274+
275+
276+# Created by https://www.gitignore.io/api/android,emacs,intellij,vim
277+
278+### Android ###
279+# Built application files
280+*.apk
281+*.ap_
282+
283+# Files for the ART/Dalvik VM
284+*.dex
285+
286+# Java class files
287+*.class
288+
289+# Generated files
290+bin/
291+gen/
292+out/
293+
294+# Gradle files
295+.gradle/
296+build/
297+
298+# Local configuration file (sdk path, etc)
299+local.properties
300+
301+# Proguard folder generated by Eclipse
302+proguard/
303+
304+# Log Files
305+*.log
306+
307+# Android Studio Navigation editor temp files
308+.navigation/
309+
310+# Android Studio captures folder
311+captures/
312+
313+# Intellij
314+*.iml
315+.idea/workspace.xml
316+
317+# Keystore files
318+*.jks
319+
320+### Android Patch ###
321+gen-external-apklibs
322+
323+
324+### Emacs ###
325+# -*- mode: gitignore; -*-
326+*~
327+\#*\#
328+/.emacs.desktop
329+/.emacs.desktop.lock
330+*.elc
331+auto-save-list
332+tramp
333+.\#*
334+
335+# Org-mode
336+.org-id-locations
337+*_archive
338+
339+# flymake-mode
340+*_flymake.*
341+
342+# eshell files
343+/eshell/history
344+/eshell/lastdir
345+
346+# elpa packages
347+/elpa/
348+
349+# reftex files
350+*.rel
351+
352+# AUCTeX auto folder
353+/auto/
354+
355+# cask packages
356+.cask/
357+dist/
358+
359+# Flycheck
360+flycheck_*.el
361+
362+# server auth directory
363+/server/
364+
365+# projectiles files
366+.projectile
367+
368+### Intellij ###
369+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
370+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
371+
372+# User-specific stuff:
373+.idea/workspace.xml
374+.idea/tasks.xml
375+.idea/dictionaries
376+.idea/vcs.xml
377+.idea/jsLibraryMappings.xml
378+
379+# Sensitive or high-churn files:
380+.idea/dataSources.ids
381+.idea/dataSources.xml
382+.idea/dataSources.local.xml
383+.idea/sqlDataSources.xml
384+.idea/dynamic.xml
385+.idea/uiDesigner.xml
386+
387+# Gradle:
388+.idea/gradle.xml
389+.idea/libraries
390+
391+# Mongo Explorer plugin:
392+.idea/mongoSettings.xml
393+
394+## File-based project format:
395+*.iws
396+
397+## Plugin-specific files:
398+
399+# IntelliJ
400+/out/
401+
402+# mpeltonen/sbt-idea plugin
403+.idea_modules/
404+
405+# JIRA plugin
406+atlassian-ide-plugin.xml
407+
408+# Crashlytics plugin (for Android Studio and IntelliJ)
409+com_crashlytics_export_strings.xml
410+crashlytics.properties
411+crashlytics-build.properties
412+fabric.properties
413+
414+### Intellij Patch ###
415+# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
416+
417+# *.iml
418+# modules.xml
419+
420+
421+### Vim ###
422+# swap
423+[._]*.s[a-w][a-z]
424+[._]s[a-w][a-z]
425+# session
426+Session.vim
427+# temporary
428+.netrwhist
429+*~
430+# auto-generated tag files
431+tags
432+

Subscribers

People subscribed via source and target branches