mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			260 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			260 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #
 | |
| # Aliases
 | |
| #
 | |
| 
 | |
| alias glfsi='git lfs install'
 | |
| alias glfst='git lfs track'
 | |
| alias glfsls='git lfs ls-files'
 | |
| alias glfsmi='git lfs migrate import --include='
 | |
| 
 | |
| #
 | |
| # Functions
 | |
| #
 | |
| 
 | |
| function gplfs() {
 | |
|   local b="$(git_current_branch)"
 | |
|   git lfs push origin "$b" --all
 | |
| }
 |