Hi, Stephen Bannasch wrote: > As I'm moving to more use of git I find it very helpful to keep the > '.git' suffix on the names of directories in which I have git > repositories. This makes it easier to distinguish between checkouts > using different SCMs. When you finally fall in love with git, you won't want to use another SCM. :) Even, if you have to, there is git-cvs{exportcommit,import}, git-svn, and some other more or less working interfaces from git to other SCMs. Perhaps it's also worth having a look at http://kitenet.net/~joey/code/mr/ (I've never used it, but heard of people who like using it.) > Is there a way to configure git clone to preserve the '.git' suffix when > creating a directory? I don't know a configuration for that, but you can simply do: git clone <repository> <reponame>.git (e.g. git clone git://example.com/foo.git foo.git) But, btw, I think some unofficial convention is, that the ".git" suffix indicates a bare repository and without that suffix it is a checked out working tree. Regards, Stephan -- Stephan Beyer <s-beyer@xxxxxxx>, PGP 0x6EDDD207FCC5040F -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html