mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 05:23:35 +00:00 
			
		
		
		
	/bin/sh and /usr/bin/env are the only two binaries that NixOS provides at a fixed path (outside a buildFHSUserEnv sandbox). This discussion was split from #11004. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
		
			
				
	
	
		
			17 lines
		
	
	
		
			376 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			376 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -e
 | 
						|
set -x
 | 
						|
 | 
						|
if ! git diff-index --quiet HEAD; then
 | 
						|
    set +x
 | 
						|
    echo "There are uncommitted changes:"
 | 
						|
    git status --short
 | 
						|
    echo "Doing nothing to avoid losing your work."
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
request_id="$1"
 | 
						|
remote=${2:-"upstream"}
 | 
						|
git fetch "$remote" "pull/$request_id/head"
 | 
						|
git checkout -B "review-original-${request_id}"
 | 
						|
git reset --hard FETCH_HEAD
 |