diff options
author | Marc Cornellà <marc.cornella@live.com> | 2018-09-26 23:56:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-26 23:56:58 +0200 |
commit | 6bd95ddbdcb0ee51ec41e28bc07c6d64e96670ba (patch) | |
tree | 1f247fe6fa0c9d225a12568dcf4e9aa59134d1bf /plugins/git-auto-fetch/README.md | |
parent | e107b85e3aedc644a7741917f914e5a5e350f4fb (diff) | |
parent | d2dfa69419845daebcfd20fed3253ae06faa2876 (diff) | |
download | zsh-6bd95ddbdcb0ee51ec41e28bc07c6d64e96670ba.tar.gz zsh-6bd95ddbdcb0ee51ec41e28bc07c6d64e96670ba.tar.bz2 zsh-6bd95ddbdcb0ee51ec41e28bc07c6d64e96670ba.zip |
add plugin: git-auto-fetch (#5477)
Diffstat (limited to 'plugins/git-auto-fetch/README.md')
-rw-r--r-- | plugins/git-auto-fetch/README.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/plugins/git-auto-fetch/README.md b/plugins/git-auto-fetch/README.md new file mode 100644 index 000000000..04f1c9445 --- /dev/null +++ b/plugins/git-auto-fetch/README.md @@ -0,0 +1,29 @@ +# Git auto fetch + +Automatically fetches all changes from all remotes while you are working in git-initialized directory. + +####Usage +Add ```git-auto-fetch``` to the plugins array in your zshrc file: +```shell +plugins=(... git-auto-fetch) +``` + +Every time you launch a command in your shell all remotes will be fetched in background. +By default autofetch will be triggered only if last fetch was done at least 60 seconds ago. +You can change fetch interval in your .zshrc: +``` +GIT_AUTO_FETCH_INTERVAL=1200 #in seconds +``` +Log of ```git fetch --all``` will be saved into .git/FETCH_LOG + + +####Toggle auto fetch per folder +If you are using mobile connection or for any other reason you can disable git-auto-fetch for any folder: + +```shell +$ cd to/your/project +$ git-auto-fetch +disabled +$ git-auto-fetch +enabled +``` |