Update: I don't use TFS anymore. But from the comments I can see that git-tfs is obviously the way to go nowadays.

Has anybody experience using Git as an offline solution for Team Foundation Server?

For Subversion you could use git-svn to keep a private repository with a svn backend.

I tried to use SvnBridge and git-svn to work with TFS. At first it looked promising but Visual Studio recognizes the solution as being under TFS version control and interferes during commit.

Are there other ways to combine those two?

link|improve this question
please update your answer, git-tfs is really awesome and keeps it from being rube goldbergian, I think it deserves a lot of credit. – DevelopingChris Mar 27 '11 at 21:20
feedback

7 Answers

up vote 58 down vote accepted

I've started working on a tool called git-tfs, similar in some ways to git-svn.

http://github.com/spraints/git-tfs

link|improve this answer
I'm really interested in your solution. Is it already usable? – brunoqc Feb 18 '10 at 16:22
3  
It's very usable for getting data from TFS to git. If you're OK with using shelvesets for pushing back to TFS, then it's usable for the whole round-trip. – Matt Burke Apr 16 '10 at 14:49
feedback

A better option is use the Git TFS gateway. This works directly with TFS.

https://github.com/spraints/git-tfs

link|improve this answer
3  
Interesting that this got -1 votes, yet the accepted answer has exactly the same link, but got 22 votes! – Steve Folly Apr 15 '11 at 10:14
2  
Especially as this answer was answered first and provided as much detail as the accepted answer. – Russell May 30 '11 at 4:40
feedback

I'm sure it's possible, but it's going to be very rube goldberg-ian in its construction and will most likely lead to more pain than pleasure. I suggest picking a source control system and going with it.

If you need real offline support then git is awesome, but windows support is still a bit flakey.

link|improve this answer
3  
I'd say the windows support for git is good enough (tm). – Tim Abell May 12 '11 at 13:42
If you use Git from a command line on Windows, it's mature enough. UI apps for Git (Git Extensions, Tortoise Git..) might be better, but they are OK still. – Tarkus Jun 8 '11 at 11:26
Now that's it's 2011 the support is a lot better. Thankfully! – jonnii Jun 8 '11 at 17:09
feedback

We just decided to do this at work. Here is a blog post about how we did it.

http://blog.lozanotek.com/archive/2009/10/20/git-svn_SvnBridge_and_TFS_Source_Control.aspx

Just found this project on Github too.. this might work but I have not tried it yet.

http://github.com/spraints/git-tfs

link|improve this answer
feedback

I can tell you it is possible...

Also here you can find some minor details about someone with the same experience: http://blog.zobie.com/2009/04/using-git-to-avoid-problems-with-tfs/

link|improve this answer
feedback

This blog series describes how the IronRuby team uses Git with TFS:

http://blog.jredville.com/category/series/git-tfs/

link|improve this answer
4  
this link seems to work blog.jredville.com/git-and8211-tfs-integration-implementation – Rob Apr 9 '10 at 17:06
feedback

Slightly off-topic to your question, but I have written a Powershell script that converts a TFS repository to a Git one. Might also be useful.

See my Github repo for the script

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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