snippets

More or less useful code snippets
Log | Files | Refs

commit c56a3eb78fbbd1eabb2777e85ca3d3378eff54ca
parent cca65b73de0fb2d70f7de4183c75d9e918769bc7
Author: Vetle Haflan <vetle@haflan.dev>
Date:   Sat,  4 Apr 2020 19:53:52 +0200

Delete gits.sh - moved to linux repo

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

diff --git a/gits.sh b/gits.sh @@ -1,75 +0,0 @@ -#!/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)" -__number_only=$([ "$2" == "-n" ] && echo 1) -__repos=() - -if [ "$1" == "-h" ]; then - echo "Usage: $0 <dir> [-n]" - exit " where <dir> is the root directory of git repos." - printf "Color coding:\n" - printf "" -fi - -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 -} - -inform(){ - [ -z "$__number_only" ] || return - printf "$1\n" -} - -__nrepos_total=0 -__nrepos_uptodate=0 - -check_repo(){ - repo="$1" - cd "$__root_dir/$repo" - branch=("$(git symbolic-ref --short -q HEAD)") - let __nrepos_total+=1 - if [ -n "$(git status | grep 'Changes not staged')" ]; then - color="\e[1;31m" - elif [ -n "$(git status | grep 'branch is ahead')" ]; then - color="\e[1;31m" - elif [ -n "$(git status | grep 'Untracked files')" ]; then - color="\e[1;33m" - elif [ -n "$(git status | grep 'up-to-date')" ]; then - let __nrepos_uptodate+=1 - color="\e[1;32m" - elif [ -n "$(git status | grep 'up to date')" ]; then - let __nrepos_uptodate+=1 - color="\e[1;32m" - else - color="\e[1;31m" # Unrecognized git status. Check manually!\e[0m" - echo "Unrecognized status!" - fi - if [ -z "$__number_only" ]; then - printf -- - - inform " $color$repo \e[0m($branch)" - fi -} - -findrepos $__root_dir -for r in ${__repos[@]}; do - check_repo $r -done - -if [ -z "$__number_only" ]; then - echo "-----" - printf "\e[1;36m$__nrepos_uptodate / $__nrepos_total repos up-to-date\e[0m\n" -else - printf "$__nrepos_uptodate / $__nrepos_total repos up-to-date\n" -fi