mirror of https://github.com/ElemeFE/element
				
				
				
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			481 B
		
	
	
	
		
			Bash
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			481 B
		
	
	
	
		
			Bash
		
	
	
| #!/usr/bin/env sh
 | |
| git checkout dev
 | |
| 
 | |
| if test -n "$(git status --porcelain)"; then
 | |
|   echo 'Unclean working tree. Commit or stash changes first.' >&2;
 | |
|   exit 128;
 | |
| fi
 | |
| 
 | |
| if ! git fetch --quiet 2>/dev/null; then
 | |
|   echo 'There was a problem fetching your branch. Run `git fetch` to see more...' >&2;
 | |
|   exit 128;
 | |
| fi
 | |
| 
 | |
| if test "0" != "$(git rev-list --count --left-only @'{u}'...HEAD)"; then
 | |
|   echo 'Remote history differ. Please pull changes.' >&2;
 | |
|   exit 128;
 | |
| fi
 | |
| 
 | |
| echo 'No conflicts.' >&2;
 |