10 lines
		
	
	
		
			186 B
		
	
	
	
		
			Bash
		
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			186 B
		
	
	
	
		
			Bash
		
	
	
	
|  | #!/usr/bin/env sh
 | ||
|  | 
 | ||
|  | # 确保脚本抛出遇到的错误 | ||
|  | set -e | ||
|  | 
 | ||
|  | git init | ||
|  | git add -A | ||
|  | git commit -m 'update: 修改' | ||
|  | 
 | ||
|  | git push -f git@github.com:yoimiya-kokomi/Miao-Yunzai.git master:system |