#!/bin/sh

### This script should be copied to ~/repos/NT/cleanup.sh
### It is executed weekly to keep the speed of the git repo
### optimized for the VMR CRE

set -x

git reflog expire --expire=now --all

git gc --aggressive --prune=now
