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
ac7dcdb2
Commit
ac7dcdb2
authored
Oct 06, 2016
by
slavaGanzin
Browse files
add colors
parent
25fcf0c2
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
View file @
ac7dcdb2
...
@@ -5,9 +5,9 @@ function git_fetch_on_chpwd {
...
@@ -5,9 +5,9 @@ function git_fetch_on_chpwd {
function
git-auto-fetch
{
function
git-auto-fetch
{
[[
!
-d
.git
]]
&&
return
[[
!
-d
.git
]]
&&
return
if
[[
-f
".git/NO_AUTO_FETCH"
]]
;
then
if
[[
-f
".git/NO_AUTO_FETCH"
]]
;
then
rm
".git/NO_AUTO_FETCH"
&&
echo
"
disabled
"
rm
".git/NO_AUTO_FETCH"
&&
echo
"
${
fg_bold
[red]
}
disabled
${
reset_color
}
"
else
else
touch
".git/NO_AUTO_FETCH"
&&
echo
"
enabled
"
touch
".git/NO_AUTO_FETCH"
&&
echo
"
${
fg_bold
[green]
}
enabled
${
reset_color
}
"
fi
fi
}
}
chpwd_functions+
=(
git_fetch_on_chpwd
)
chpwd_functions+
=(
git_fetch_on_chpwd
)
...
...
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