0

I want to use TFS as a version control for developing one of our iPad applications. I followed this article for configuring my Xcode project.

After doing all the steps mentioned in the blog i am able to checkin and checkout the whole project. But I am not able to push changed files back to TFS server. More over I am getting following error on executing git push command

fatal:
https://username@mydomain:8080/tfsprod/info/refs?service=git-receive-pack
not found: did you run git update-server-info on the server?

Any Help would be much appreciated.

Andy
  • 5,287
  • 2
  • 41
  • 45
Devang
  • 320
  • 3
  • 12

1 Answers1

0

Just moving the comments into an answer.

You can't use git push. You need to use either git tf checkin or git tf checkin --deep (if you want a check in per git commit).

Reference documentation for git tf checkin is here

Richard Banks
  • 12,456
  • 3
  • 46
  • 62