1

I have a project hosted on TFS, let's call it GenderBlender. Two teams work on GenderBlender. One team got the latest code from TFS and hosted it on Github. Made some commits to that GitHub. How can I move those changes from Github to Tfs without commit history and just one big commit under my account?

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120
Obviously
  • 105
  • 2
  • 11

1 Answers1

2

I will be moving it from my local git repository to my local tfs repository and then committing them to the tfs.

That is actually the idea: copy the all files from the Git repo to the tfs working tree (be it a TFVC workspace or a Git one)

  • If it is a Git repo, Git will detect the changes: add and commit.
  • If it is a TFVC workspace, use a reconcile command to detect the changes
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250