Moving a TFS Git Repository to Github
Join the DZone community and get the full member experience.
Join For FreeBecause we already had our repository w/ change history setup all we really wanted to do was ‘change remote origin’ for our repository and here are the steps WE took to accomplish this.
Our Steps (it is assume you already have a github account setup)
- Go to github.com and create your repository.
- Create a copy of your existing tfs/git source and move it to a new directly. I do this simply to ensure I don’t screw anything up and have to do a new pull (i am lazy and xcopy is faster).
- from c:\TFSRepo –> c:\GithubRepo
- from c:\TFSRepo –> c:\GithubRepo
- Open a git command prompt and CD into the destination directory from step 1
- From the command prompt run ‘git remote –v’ this command is a sanity check to double check the current origin of your repository
- From the command prompt run ‘git remote rm origin’ this command will remove/clear the origin settings for your reporsitory
- From the command prompt run ‘git remote add origin http://github.com/[accountusername]/[reponame].git' this command will set the origin information to your new repository path in github. Pay attention to the url’s casing as github is case sensitive and you may experience issues if the casing is off. PS. You can get the url above from the github repository page
- From the command prompt run ‘git push origin master’ this command will push your current files up to github and publish them. Please note that this will ONLY push the master branch. If you want to push other branches you will need to do a ‘git push origin [branchnamehere]’ for each branch.
- Refresh the github.com project page and rejoice in the fact that you are out of TFS and your pain should be greatly reduced :)
These are the steps that worked for us, of course they may be different or better ways, but again these worked for us.
Till next time,
Published at DZone with permission of Derik Whittaker, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments