mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	Merge pull request #1661 from hellerbarde/master
Fix some problems with git enabled prompts where they *always* claim to have untracked files
This commit is contained in:
		@@ -62,7 +62,7 @@ function git_prompt_long_sha() {
 | 
			
		||||
git_prompt_status() {
 | 
			
		||||
  INDEX=$(git status --porcelain -b 2> /dev/null)
 | 
			
		||||
  STATUS=""
 | 
			
		||||
  if $(echo "$INDEX" | grep '^?? ' &> /dev/null); then
 | 
			
		||||
  if $(echo "$INDEX" | grep '^\?\? ' &> /dev/null); then
 | 
			
		||||
    STATUS="$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS"
 | 
			
		||||
  fi
 | 
			
		||||
  if $(echo "$INDEX" | grep '^A  ' &> /dev/null); then
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user