Month: June 2016
-
Remove C# registration
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\VCSExpress\9.0\Registration] “Params”=-
-
Oneliner to backup git repos from Gitolite
ssh <user>@<githost> info | sed -n ‘/^ R W/p’ | sed -r ‘s/^.{5}//’ | while read line ; do git clone ssh://<user>@<host>/$line ; done