snippets

More or less useful code snippets
Log | Files | Refs

commit b5290b7bb99bd44f62a561eaf2d498cf25175bf3
parent 9cacabd0bf91d8b8199f48043d61ea5c331ee608
Author: Vetle Haflan <vetle@haflan.dev>
Date:   Sun, 29 Dec 2019 00:34:42 +0100

Add gits.sh - for quickly checking multiple git repos

Diffstat:
Agits.sh | 47+++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+), 0 deletions(-)

diff --git a/gits.sh b/gits.sh @@ -0,0 +1,47 @@ +#!/bin/bash + +# Script for handling multiple git repos at once +# "Install" with `sudo ln -s $PWD/gits.sh /usr/bin/gits` + +__root_dir="$(realpath $1)" +__repos=() + +findrepos(){ + if [ -d $1/.git ]; then + __repos+=("$(realpath --relative-to $__root_dir $1)") + return + fi + __files=($(ls $1)) + for f in ${__files[@]}; do + if [ -d $1/$f ]; then + findrepos $1/$f + fi + done +} + +__nrepos_total=0 +__nrepos_uptodate=0 +checkrepo(){ + repo="$1" + cd "$__root_dir/$repo" + branch=("$(git symbolic-ref --short -q HEAD)") + echo "Checking $repo ($branch)" + if [ -n "$(git status | grep 'Changes not staged')" ]; then + printf "\e[1;31m> Uncommited changes\e[0m\n" + elif [ -n "$(git status | grep 'branch is ahead')" ]; then + printf "\e[1;31m> Unpushed commits\e[0m\n" + elif [ -n "$(git status | grep 'Untracked files')" ]; then + printf "\e[1;33m> Untracked files\e[0m\n" + else + let __nrepos_uptodate+=1 + fi + let __nrepos_total+=1 +} + +findrepos $__root_dir +for r in ${__repos[@]}; do + checkrepo $r +done + +echo "-----" +printf "\e[1;36m$__nrepos_uptodate / $__nrepos_total repos up-to-date\e[0m\n"