I\'m using git-tfs
, and I was wondering if it is possible to merge two TFS branches using git-tfs
. I have two branches $/MyCompany/Dev & $/MyCompan
I'm not a git-tfs user, but I have done this with git-svn in the past (which I believe has a similar approach). I think your main issue is that you have two repos. If you add both remote branches to the same git repo, you should then be able to do a local merge, do a local commit and then push that commit to TFS.
HTH