mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:39:37 -05:00 
			
		
		
		
	docs(server): Fix glob pattern in library exclusions (#6752)
fix glob pattern in library exclusions
This commit is contained in:
		
							parent
							
								
									64da2c1698
								
							
						
					
					
						commit
						f6afb23d56
					
				@ -78,10 +78,10 @@ By default, all files in the import paths will be added to the library. If there
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
Some basic examples:
 | 
					Some basic examples:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- `*.tif` will exclude all files with the extension `.tif`
 | 
					- `**/*.tif` will exclude all files with the extension `.tif`
 | 
				
			||||||
- `hidden.jpg` will exclude all files named `hidden.jpg`
 | 
					- `**/hidden.jpg` will exclude all files named `hidden.jpg`
 | 
				
			||||||
- `**/Raw/**` will exclude all files in any directory named `Raw`
 | 
					- `**/Raw/**` will exclude all files in any directory named `Raw`
 | 
				
			||||||
- `*.{tif,jpg}` will exclude all files with the extension `.tif` or `.jpg`
 | 
					- `**/*.{tif,jpg}` will exclude all files with the extension `.tif` or `.jpg`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Nightly job
 | 
					### Nightly job
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user