mybin

my ~/bin
git clone https://a3nm.net/git/mybin/
Log | Files | Refs | README

commit 516e0b181463329cfb4ca26db2b12abb330b75c4
parent d6bafc3723f267a41fc8635157a7875ad699661f
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Fri, 17 Aug 2018 14:34:46 +0200

git-gc-all

Diffstat:
git-gc-all | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/git-gc-all b/git-gc-all @@ -0,0 +1,10 @@ +#!/bin/bash + +cd "$HOME/git" +for a in *; +do + cd "$a" + git gc + cd .. +done +