Tam olarak test edip çalıştırabildiğim kod şu şekilde

RewriteEngine on
RewriteRule ^git/(.*?)$ go.php?url=$1 [L,NC]

   <?php
$url = strip_tags(trim($_GET['url']));

header("Location: http://$url"); /* Redirect browser */

?>