How Do I Use git-tfs Idiomatically?

  • The git idiom is to check out branches to the root directory of the repository. Checking out a branch will replace the contents of the directory with the contents of that branch.

  • The TFS idiom is to check out each branch in a different directory under the root directory of the repository (even the master or trunk branch). Checking out a branch will place it in a new directory next to the current one.

Using git-tfs, I can clone a TFS repository or branch into a git repository. I want to work on a TFS repository with multiple branches in a manner consistent with the git branching idiom. But I'm not sure what's technically possible or recommended :)


Clone The Whole TFS Repository

If I clone the whole repository out of TFS

c:\repo> git tfs clone http://<tfsurl>:8080 $/main

That would give me a git master containing all the TFS branches as directories.

c:\repo [master]> dir
    trunk
    feature-logon
    feature-search
    release-0.0.1

Add a Remote Per TFS Branch

I don't know if I can (or how to) map a git remote to each TFS branch.

c:\repo> git init .
c:\repo [master]> git tfs clone http://<url> $/main/trunk .

Then

c:\repo [master]> git checkout -b feature-logon
c:\repo [feature-logon]>git tfs clone http://<url> $/main/feature-logon .

I know this is technically incorrect, but I don't know any better without playing (my only TFS repo is very large, experimenting is taking a long time)

link|improve this question

It looks like Ivan Danilov is tackling this issue! – Anthony Mastrean Jul 26 '11 at 21:48
feedback

2 Answers

Here's one way you can do this, and still maintain some relationships between master and the branches. You'd probably want to script it. Excuse me if I use bash statements rather than windows command line for some of my examples

First clone the whole repository out, as in your first example, with branches as directories.

This moves the trunk to the root. (hopefully there are no conflicts with your branch folders)

mv trunk/*.* .

Commit your new master

git commit -a -m "refactoring master"

creating a new branch

git checkout -b feature-login

Copy the branch files over the root files

mv feature-login/*.* .

Don't need these here any longer

rm -rf [all_branch_directories]

Commit the branch

git commit -a -m "refactoring feature-login"

back to master

git checkout master

Do it all again

git checkout -b next_branch

etc. etc..

Finally at the end

git checkout master
rm -rf [all_branch_directories]
git commit -a -m "refactoring master"

It's not perfect, but you end up with all your branches cloned off master and diffed more or less appropriately. AFAIK git should be fine if you overwrite a file with another file but the contents don't change, which allows this to all work.

One downside is that you won't clear out any files in the branches that have been deleted from the trunk. This may or may not be an issue for you...

link|improve this answer
come to think of it, you could probably just delete everything from each new branch before copying branch files down – Joshua Apr 6 '11 at 1:17
1  
Isn't this going to break the link when you try to commit to TFS again? – bdukes Apr 11 '11 at 13:35
1  
oh yes. My assumption was the the OP wants to move his TFS to git permanently – Joshua Apr 11 '11 at 19:28
1  
would not recommend using two different source control systems at the same time – Joshua Apr 11 '11 at 19:28
I want to continue using TFS as the "golden" repository. I want to use git on the side, or in a smaller team. – Anthony Mastrean Apr 11 '11 at 21:47
feedback

What about multiple remote tfs-repos, 1 per branch? i have the following structure: $/Root/Main/someproject (the trunk) $/Root/Releases/Branch1/someproject $/Root/Releases/Branch2/someproject

what i did

git tfs quick-clone http://tfs:8080/tfs/defaultcollection $/Root/Trunk GitRepo
git tfs quick-clone http://tfs:8080/tfs/defaultcollection $/Root/Rleases/Branch1 GitRepo -i 
    branch1
git tfs quick-clone http://tfs:8080/tfs/defaultcollection $/Root/Rleases/Branch2 GitRepo -i branch2

then you can create a branch for each remote branch: git checkout -b localbranch1 tfs/Branch1 and commit into the tfs branch git tfs ct -i branch1

I am still experimenting...

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.