dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 240926287eb4e7853b47679272f4eef3cbbf01e1
parent 10015f0ffc1c0c319f00034a98d391cc48ca7722
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Tue, 26 Feb 2019 18:18:41 +0100

global-git-status shouldn't rely on my aliases


Former-commit-id: 1993972732d0385f23f91ad7744c5cb9d083d1f1
Diffstat:
Mscripts/global-git-status | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/scripts/global-git-status b/scripts/global-git-status @@ -29,12 +29,10 @@ echo -ne '\r' IFS=$'\n' for i in ${gits[@]}; do ((count++)) - # unset IFS echo -ne "Processed $count\r" - # IFS=$'\n' echo "git: $i" >> $logfile; cd "$i/../" &>/dev/null; - git f &> /dev/null; + git fetch --all &> /dev/null; git status >> $logfile; hr >> $logfile; done