10 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
|  | #!/usr/bin/env bash
 | ||
|  | set -euo pipefail | ||
|  | 
 | ||
|  | # ins Verzeichnis wechseln, wo das Script selbst liegt | ||
|  | cd "$(dirname "$0")" | ||
|  | 
 | ||
|  | # git aktualisieren | ||
|  | git fetch origin | ||
|  | git pull |