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
Ohmyzsh
Commits
a4748a2a
Commit
a4748a2a
authored
Mar 26, 2012
by
fred-o
Browse files
Merge branch 'master' of
https://github.com/robbyrussell/oh-my-zsh
parents
7e5dda7f
1120f973
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/git.zsh
View file @
a4748a2a
...
@@ -4,15 +4,21 @@ function git_prompt_info() {
...
@@ -4,15 +4,21 @@ function git_prompt_info() {
echo
"
$ZSH_THEME_GIT_PROMPT_PREFIX
${
ref
#refs/heads/
}
$(
parse_git_dirty
)
$ZSH_THEME_GIT_PROMPT_SUFFIX
"
echo
"
$ZSH_THEME_GIT_PROMPT_PREFIX
${
ref
#refs/heads/
}
$(
parse_git_dirty
)
$ZSH_THEME_GIT_PROMPT_SUFFIX
"
}
}
# Checks if working tree is dirty
# Checks if working tree is dirty
parse_git_dirty
()
{
parse_git_dirty
()
{
if
[[
-n
$(
git status
-s
--ignore-submodules
=
dirty 2> /dev/null
)
]]
;
then
local
SUBMODULE_SYNTAX
=
''
if
[[
$POST_1_7_2_GIT
-gt
0
]]
;
then
SUBMODULE_SYNTAX
=
"--ignore-submodules=dirty"
fi
if
[[
-n
$(
git status
-s
${
SUBMODULE_SYNTAX
}
2> /dev/null
)
]]
;
then
echo
"
$ZSH_THEME_GIT_PROMPT_DIRTY
"
echo
"
$ZSH_THEME_GIT_PROMPT_DIRTY
"
else
else
echo
"
$ZSH_THEME_GIT_PROMPT_CLEAN
"
echo
"
$ZSH_THEME_GIT_PROMPT_CLEAN
"
fi
fi
}
}
# Checks if there are commits ahead from remote
# Checks if there are commits ahead from remote
function
git_prompt_ahead
()
{
function
git_prompt_ahead
()
{
if
$(
echo
"
$(
git log origin/
$(
current_branch
)
..HEAD 2> /dev/null
)
"
|
grep
'^commit'
&> /dev/null
)
;
then
if
$(
echo
"
$(
git log origin/
$(
current_branch
)
..HEAD 2> /dev/null
)
"
|
grep
'^commit'
&> /dev/null
)
;
then
...
@@ -61,4 +67,30 @@ git_prompt_status() {
...
@@ -61,4 +67,30 @@ git_prompt_status() {
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS
"
STATUS
=
"
$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS
"
fi
fi
echo
$STATUS
echo
$STATUS
}
}
\ No newline at end of file
#compare the provided version of git to the version installed and on path
#prints 1 if input version <= installed version
#prints -1 otherwise
function
git_compare_version
()
{
local
INPUT_GIT_VERSION
=
$1
;
local
INSTALLED_GIT_VERSION
INPUT_GIT_VERSION
=(
${
(s/./)INPUT_GIT_VERSION
}
)
;
INSTALLED_GIT_VERSION
=(
$(
git
--version
)
)
;
INSTALLED_GIT_VERSION
=(
${
(s/./)INSTALLED_GIT_VERSION[3]
}
)
;
for
i
in
{
1..3
}
;
do
if
[[
$INSTALLED_GIT_VERSION
[
$i
]
-lt
$INPUT_GIT_VERSION
[
$i
]
]]
;
then
echo
-1
return
0
fi
done
echo
1
}
#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
unset
-f
git_compare_version
plugins/bundler/bundler.plugin.zsh
View file @
a4748a2a
...
@@ -6,7 +6,7 @@ alias bu="bundle update"
...
@@ -6,7 +6,7 @@ alias bu="bundle update"
# The following is based on https://github.com/gma/bundler-exec
# The following is based on https://github.com/gma/bundler-exec
bundled_commands
=(
annotate cap capify cucumber ey foreman guard heroku middleman nanoc rackup rainbows rake rspec ruby shotgun spec spork thin thor unicorn unicorn_rails
)
bundled_commands
=(
annotate cap capify cucumber ey foreman guard heroku middleman nanoc rackup rainbows
rails
rake rspec ruby shotgun spec spork thin thor unicorn unicorn_rails
)
## Functions
## Functions
...
...
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