Regular Expressions for Subversion keywords

Here are different Regular Expressions to identify the common (to me at least), the Subversion keyword: $Id$ on different type of files (depending on how the comments go).

This one is for languages derived from C (like C++, C#, PHP, Java, JavaScript):

// \$Id\: [A-Za-z0-9\ \:\.\-\_]* \$

It will match something like:

// $Id: filename [...]

Copy a Git bare repository including all branches

I have been enjoying Git for some months now. Coming from Subversion, the learning curve is not that long (although, can be a bit confusing at the beginning). There are a lot of very good documentation out there, but found Git Immersion one of the best resources.

Anyways, I was migrating some of my Subversion [...]