feat(git-auto-fetch): add date to git-auto-fetch log file (#10021)

master
Moshe Avni 5 years ago committed by GitHub
parent ab8b9913cb
commit af271c9e38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      plugins/git-auto-fetch/git-auto-fetch.plugin.zsh

@ -25,8 +25,9 @@ function git-fetch-all {
fi
# Fetch all remotes (avoid ssh passphrase prompt)
date -R &>! "$gitdir/FETCH_LOG"
GIT_SSH_COMMAND="command ssh -o BatchMode=yes" \
command git fetch --all 2>/dev/null &>! "$gitdir/FETCH_LOG"
command git fetch --all 2>/dev/null &>> "$gitdir/FETCH_LOG"
) &|
}

Loading…
Cancel
Save