mybin

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

commit 4ab904e2f923e5de48049d75cffafd76d84b00e1
parent c8cb083aa58102d9d83a91608971b4c7c296759c
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Thu, 18 Aug 2016 01:27:15 +0200

rename

Diffstat:
fetch-all-git | 15+++++++++++++++
pull-all-git | 15---------------
2 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/fetch-all-git b/fetch-all-git @@ -0,0 +1,15 @@ +#!/bin/bash + +set -e + +umask 022 + +cd ~/git +for a in * +do + cd "$a" + # https://stackoverflow.com/a/21331942 + git fetch "https://a3nm.net/git/${a%.git}" '*:*' + cd .. +done + diff --git a/pull-all-git b/pull-all-git @@ -1,15 +0,0 @@ -#!/bin/bash - -set -e - -umask 022 - -cd ~/git -for a in * -do - cd "$a" - # https://stackoverflow.com/a/21331942 - git fetch "https://a3nm.net/git/${a%.git}" '*:*' - cd .. -done -