forked from GNUsocial/gnu-social
		
	Ignore whole directory, not only inner contents
`dir/*` style let git ignore files and directories in `dir/`, but not `dir/` itself. This cause `git clean -df` to remove `dir/` **with its contents**! To prevent `git clean -df` to remove data directories (`avatar/`, `file/`, etc), use `dir/` (or `dir`) style in gitignore.
This commit is contained in:
		
							
								
								
									
										16
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -1,11 +1,11 @@ | ||||
| avatar/* | ||||
| files/* | ||||
| file/* | ||||
| local/* | ||||
| _darcs/* | ||||
| logs/* | ||||
| log/* | ||||
| run/* | ||||
| avatar/ | ||||
| files/ | ||||
| file/ | ||||
| local/ | ||||
| _darcs/ | ||||
| logs/ | ||||
| log/ | ||||
| run/ | ||||
| config.php | ||||
| .htaccess | ||||
| httpd.conf | ||||
|   | ||||
		Reference in New Issue
	
	Block a user