We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3df4d11 commit c61d49bCopy full SHA for c61d49b
git-wizard
@@ -318,7 +318,9 @@ remote()
318
{
319
rep remote '%1' "config --get branch.$prop[branch].remote"
320
local h=$git_dir/FETCH_HEAD
321
- test -e $h && prop l fetch_age '%1 (min) @v' "$(((`date +%s` - `stat -c %Z $h`) / 60))"
+ test -e $h &&
322
+ prop l fetch_age '%1 (min) @v' \
323
+ "$(((`date +%s` - `stat -c %Z $h`) / 60))"
324
#((fetch= ! ${#fetch_age} || $prop[fetch_age] > 10 || $prop[fetch_age] < 0))
325
if [[ -z "$prop[fetch_age]" || "$prop[fetch_age]" -gt 360 || "$prop[fetch_age]" -lt 0 ]]; then
326
git fetch --all --prune
0 commit comments