Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a newbie to Git. I'm exploring one-way one-time migration of Git repository to TFS (with history). I'm looking into plugin git-tfs. I couldn't find any help/wiki/blog on this particular scenario. Can I use git-tfs checkin or git-tfs clone command in this case? Any examples would be great!! Thank you!!

share|improve this question
1  
Does this help? elegantcode.com/2011/03/15/… – KMoraz Feb 1 '12 at 9:21
Thanks KMoraz for the link! It didn't cover TFS push part. – Manish Jain Feb 8 '12 at 22:02
FYI, Microsoft just released cross platform plug-in: git-tf. Please see video here - channel9.msdn.com/Blogs/VisualStudio/… – Manish Jain Aug 23 '12 at 21:31

1 Answer

up vote 4 down vote accepted

I was able to do it on test repository. Big thanks to Ivan Danilov. Here are exact steps:

  1. Download zip
  2. Unblock (right click file->properties->unblock) downloaded files (win 7 for me)
  3. Copy to C:\Program Files (x86)\Git\bin
  4. Now you should be able to run Git tfs commands.
  5. Create empty TFS target folder (assuming you are migrating to empty folder)
  6. Bind TFS to Git repository and then upload Git changes to TFS. (Run commands in sequence):
   git tfs init http://server:8080/tfs/collection $/project -d 
   git tfs pull
   git rebase tfs/default
   git tfs rcheckin

Please note rebase is the key. It could be more complicated if you have branches etc and I haven't tried those scenarios.

Please see this link and this link for more details.

Git TFS

share|improve this answer
This looks as if it doesn't preserve history - or if it does you have to do a new git tfs rcheckin for each changeset from git. Is this correct? Also, how well does it handle renames and deletes? – Ian Goldby Feb 10 '12 at 15:12
I did rcheckin only once after rebase. I haven't tried but I see multiple open issues on renames here: github.com/git-tfs/git-tfs/issues – Manish Jain Feb 10 '12 at 22:29
I get out of memory issues when trying to rebase a large repository - has anyone encountered similar issues? – mikelong Nov 29 '12 at 6:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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