mirror of
				https://github.com/sahinakkaya/til.git
				synced 2025-07-17 14:01:49 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			182 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			182 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| You can remove untracked files with `git-clean`. 
 | |
| 
 | |
| ```bash
 | |
| # Show which files will be removed
 | |
| git clean -nd
 | |
| 
 | |
| # remove the files
 | |
| git clean -f
 | |
| 
 | |
| # remove interactively
 | |
| git clean -i
 | |
| ```
 | 
