Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
ac7dcdb2
Commit
ac7dcdb2
authored
Oct 06, 2016
by
slavaGanzin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add colors
parent
25fcf0c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
git-auto-fetch.plugin.zsh
plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
+2
-2
No files found.
plugins/git-auto-fetch/git-auto-fetch.plugin.zsh
View file @
ac7dcdb2
...
...
@@ -5,9 +5,9 @@ function git_fetch_on_chpwd {
function
git-auto-fetch
{
[[
!
-d
.git
]]
&&
return
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
touch
".git/NO_AUTO_FETCH"
&&
echo
"
enabled
"
touch
".git/NO_AUTO_FETCH"
&&
echo
"
${
fg_bold
[green]
}
enabled
${
reset_color
}
"
fi
}
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