Git to TFS 2008 one way migration (with history)

前端 未结 1 639
梦毁少年i
梦毁少年i 2021-02-15 01:36

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

1条回答
  •  -上瘾入骨i
    2021-02-15 02:24

    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

    0 讨论(0)
提交回复
热议问题