#!/bin/bash

function clonetree
{
	#while true; do
		clonedir=/tmp/$(uuidgen)
		git clone https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git $clonedir
		rm -rf $clonedir
	#done
}

clonetree
