vote up 0 vote down star

Hi,

By default git init creates a folder called '.git'. In the recent Visual Studio tools (2005 and up) this works fine. But Visual Studio 2003 (and ... VB6 as well probably) crashes on this foldername. ideally I would like to change this per repository to something like 'git' instead of '.git'. Is this possible?

I know this has been asked before (http://stackoverflow.com/questions/672655/relocating-the-git-folder) ... but that was in a linux environment. I'm using windows at work sigh.

Hoping there is a simple solution .. otherwise I'll just have to wing it :o But I would rather use sexy git.

edit:

How do you set the GIT_DIR variable on windows? I googled it but it didn't make much sense.

edit2:

Wouldn't an environment variable set it for all repositories on that machine? If so I would have to go into every repository and move the folder manually ... also, I tried setting it to 'git' and when I open the git gui app it tells me "cannot use funny .git repository git". When I use the git console it works ... but honestly this is far from a good solution.

flag

5 Answers

vote up 1 vote down check

Create all projects at least one level below the repository root.

link|flag
Are you saying I should create one gigantic repository? :o – SpoBo Apr 28 at 12:20
Ah I see what you are saying ... this might work! :) Going to give it a try. – SpoBo Apr 28 at 12:24
vote up 1 vote down

I'd suppose the easiest way is to not have any .sln files in the project root.

The project here has about 50 .sln files.

link|flag
It also fails when I just open the .vbproj file. (refreshing the tree that is) – SpoBo Apr 28 at 12:22
Err, that's not what I meant. Placing the source control project root one level higher than the .sln & .vbproj files is what I meant. – Joshua Apr 28 at 15:08
vote up 1 vote down

On Linux, at least, git has a command line option called --git-dir. Whenever you run git, use the --git-dir option. This should exist in the Windows version too, so you could do

 git --git-dir=git_directory status

Perhaps you could put that in a batch file or something to make your life easier.

link|flag
vote up 2 vote down

You should be able to set the GIT_DIR environment variable, using this Knowledge Base guide.

link|flag
vote up 3 vote down

The GIT_DIR variable allows you to specify another location for the repository.

link|flag
How do I do this properly on windows? I tried using git config, etc ... can't figure it out :( – SpoBo Apr 21 at 8:53
This article explains how to change environment variables in Windows XP: support.microsoft.com/kb/310519 – pgb Apr 21 at 12:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.