You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							92 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							92 lines
						
					
					
						
							1.2 KiB
						
					
					
				
								#.gitignore is a file which makes git ignore files which should
							 | 
						|
								# not go into version control in the first place
							 | 
						|
								# Questions? See
							 | 
						|
								# http://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files
							 | 
						|
								# http://git-scm.com/docs/gitignore
							 | 
						|
								
							 | 
						|
								###########################
							 | 
						|
								# ignore generated binaries
							 | 
						|
								# but not the data folder
							 | 
						|
								###########################
							 | 
						|
								
							 | 
						|
								/bin/data/images
							 | 
						|
								/bin/data/recordings
							 | 
						|
								/bin/data/models
							 | 
						|
								/bin/data/dataset
							 | 
						|
								/bin/libs/
							 | 
						|
								
							 | 
						|
								#########
							 | 
						|
								# general
							 | 
						|
								#########
							 | 
						|
								
							 | 
						|
								[Bb]uild/
							 | 
						|
								[Oo]bj/
							 | 
						|
								*.o
							 | 
						|
								[Dd]ebug*/
							 | 
						|
								[Rr]elease*/
							 | 
						|
								*.mode*
							 | 
						|
								*.app/
							 | 
						|
								*.pyc
							 | 
						|
								.svn/
							 | 
						|
								*.log
							 | 
						|
								
							 | 
						|
								########################
							 | 
						|
								# IDE files which should
							 | 
						|
								# be ignored
							 | 
						|
								########################
							 | 
						|
								
							 | 
						|
								# XCode
							 | 
						|
								*.pbxuser
							 | 
						|
								*.perspective
							 | 
						|
								*.perspectivev3
							 | 
						|
								*.mode1v3
							 | 
						|
								*.mode2v3
							 | 
						|
								# XCode 4
							 | 
						|
								*.xccheckout
							 | 
						|
								xcuserdata/
							 | 
						|
								
							 | 
						|
								# Visual Studio
							 | 
						|
								*.sdf
							 | 
						|
								*.opensdf
							 | 
						|
								*.suo
							 | 
						|
								*.pdb
							 | 
						|
								*.ilk
							 | 
						|
								*.aps
							 | 
						|
								ipch/
							 | 
						|
								
							 | 
						|
								# Eclipse
							 | 
						|
								.metadata
							 | 
						|
								local.properties
							 | 
						|
								.externalToolBuilders
							 | 
						|
								
							 | 
						|
								# Android Studio
							 | 
						|
								.gradle
							 | 
						|
								/local.properties
							 | 
						|
								/.idea/workspace.xml
							 | 
						|
								/.idea/libraries
							 | 
						|
								
							 | 
						|
								##################
							 | 
						|
								# operating system
							 | 
						|
								##################
							 | 
						|
								
							 | 
						|
								# Linux
							 | 
						|
								*~
							 | 
						|
								# KDE
							 | 
						|
								.directory
							 | 
						|
								.AppleDouble
							 | 
						|
								
							 | 
						|
								# OSX
							 | 
						|
								.DS_Store
							 | 
						|
								*.swp
							 | 
						|
								*~.nib
							 | 
						|
								# Thumbnails
							 | 
						|
								._*
							 | 
						|
								
							 | 
						|
								# Windows
							 | 
						|
								# Image file caches
							 | 
						|
								Thumbs.db
							 | 
						|
								# Folder config file
							 | 
						|
								Desktop.ini
							 | 
						|
								
							 | 
						|
								# Android
							 | 
						|
								.csettings
							 | 
						|
								
							 |