I\'d like to see how TFS will work for my command. So I\'d like to move our current GIT repository to TFS database. We\'ve used GIT for it\'s prevailed branching support so I\'d
This is an old question, and maybe no one is looking for this anymore, but it is a lot easier now.
Create a Team Project in TFS with Git as the source code control
Grab the Git url for the project. It will look something like ... https://YOURPROJECTS.visualstudio.com/DefaultCollection/_git/PROJECTNAME
Drop into the command like and execute.
git remote add origin https://YOURPROJECTS.visualstudio.com/DefaultCollection/_git/PROJECTNAME
git push -u origin --all
Should be all you need.