Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
7cdb6d66
"vscode:/vscode.git/clone" did not exist on "644728bd225c70068e32501c81a95713d04b8ff1"
Commit
7cdb6d66
authored
Apr 23, 2013
by
Robby Russell
Browse files
Resolving conflict when merging in 1570
parents
d6a36b17
9245a308
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/git.zsh
View file @
7cdb6d66
...
...
@@ -14,20 +14,20 @@ parse_git_dirty() {
if
[[
"
$(
git config
--get
oh-my-zsh.hide-status
)
"
!=
"1"
]]
;
then
if
[[
$POST_1_7_2_GIT
-gt
0
]]
;
then
SUBMODULE_SYNTAX
=
"--ignore-submodules=dirty"
fi
fi
if
[[
"
$DISABLE_UNTRACKED_FILES_DIRTY
"
!=
"true"
]]
;
then
GIT_STATUS
=
$(
git status
-s
${
SUBMODULE_SYNTAX
}
2> /dev/null |
tail
-n1
)
else
GIT_STATUS
=
$(
git status
-s
${
SUBMODULE_SYNTAX
}
-uno
2> /dev/null |
tail
-n1
)
fi
if
[[
-n
$
GIT_STATUS
&&
"
$GIT_STATUS
"
!=
"
$CLEAN_MESSAGE
"
]]
;
then
if
[[
-n
$
(
git status
-s
${
SUBMODULE_SYNTAX
}
-uno
2> /dev/null
)
]]
;
then
echo
"
$ZSH_THEME_GIT_PROMPT_DIRTY
"
else
echo
"
$ZSH_THEME_GIT_PROMPT_CLEAN
"
fi
fi
else
echo
"
$ZSH_THEME_GIT_PROMPT_CLEAN
"
fi
fi
}
# get the difference between the local and remote branches
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment