mirror of
				https://github.com/dekuNukem/USB4VC.git
				synced 2025-10-24 11:20:50 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			465 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			465 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| if [[ $# -eq 0 ]] ; then
 | |
|     echo 'error: please enter a commit comment'
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| find . -type f -name "*.b#*" -exec rm -f {} \;
 | |
| find . -type f -name "*.s#*" -exec rm -f {} \;
 | |
| find . -type f -name "*.l#*" -exec rm -f {} \;
 | |
| find . -type f -name "*.csv#*" -exec rm -f {} \;
 | |
| find . -type f -name "*.DS_Store*" -exec rm -f {} \;
 | |
| find . -name "__pycache__" -exec rm -rf {} \;
 | |
| rm -rfv ./user_program/rpi_app
 | |
| 
 | |
| git add --all
 | |
| git commit -m "$@"
 | |
| git push origin master
 |