Olmo
Olmo

Reputation: 4297

Multiple Team Foundation Server

We currently have a local TF Server here in our company, and we are about to make a subset of our projects open source (via Codeplex), but we are having problems mixing two Team Foundation Servers in the same solution. Looks like Visual Studio can't be connected to many TF Servers at the same time. What's the best way to deal with that?

Someone with open source projects has faced a problem like this??

Upvotes: 3

Views: 2066

Answers (1)

user45886
user45886

Reputation:

I would stick to one single authorative repository or you'd end up with a version hell at some point. If you intend to have external developers contributing code on the codeplex side you will need to merge your changes with theirs and also integrate their changes on your own internal TFS server.

It's safer to have one single authoritive repository and just create snapshots for milestone releases on the other.

You could do your fine grained check-ins and modifications on your internal repository and periodically integrate/merge them to the codeplex code-tree. However what works on one codebase may not work so well on the other after integrating, the sooner you integrate changes the better (don't work on your own isolated branch too long).

Upvotes: 2

Related Questions