mirror of
				https://github.com/unman/shaker.git
				synced 2025-11-03 14:24:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			141 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			141 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
[ -n "$1" ] || exit 1
 | 
						|
 | 
						|
if [ "$1" = "sg" ]; then
 | 
						|
    git remote add $1 "ext::git-qrexec sys-git 3 `basename $PWD`"
 | 
						|
    exit $?
 | 
						|
fi
 | 
						|
 |