mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	Add git user profile functions for prompt display
This commit is contained in:
		
							parent
							
								
									c4582777fc
								
							
						
					
					
						commit
						69e1506ad9
					
				
							
								
								
									
										12
									
								
								lib/git.zsh
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								lib/git.zsh
									
									
									
									
									
								
							@ -188,6 +188,18 @@ function git_compare_version() {
 | 
			
		||||
  echo 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Outputs the name of the current user
 | 
			
		||||
# Usage example: $(git_current_user_name)
 | 
			
		||||
function git_current_user_name() {
 | 
			
		||||
  command git config user.name 2>/dev/null
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Outputs the email of the current user
 | 
			
		||||
# Usage example: $(git_current_user_email)
 | 
			
		||||
function git_current_user_email() {
 | 
			
		||||
  command git config user.email 2>/dev/null
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# This is unlikely to change so make it all statically assigned
 | 
			
		||||
POST_1_7_2_GIT=$(git_compare_version "1.7.2")
 | 
			
		||||
# Clean up the namespace slightly by removing the checker function
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user