2

I have an existing Cordova project on visual studio 2015 and i need to push it on Team Foundation Server so how?

I tried doing:

file --> new --> Project from existing code, and then choose Cordova

so now i want to push it on Team Foundation Server..

but it didn't work by command line so i installed visual studio 2015 to try push it

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120
Joe Sleiman
  • 2,416
  • 5
  • 25
  • 40

1 Answers1

1

Since a git push should work, check if you didn't add and commit a huge file in your project.

Or at least, try

git config --global http.postBuffer 524288000

Both cases were seen in "Git hangs while writing objects".

But if git status reports "Your branch is up to date with origin master.", then the previous push must have succeeded. At least try a git fetch to check if the remote repo updates anything.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • i did it .. with same result it still hang s – Joe Sleiman Sep 04 '16 at 10:18
  • and also with git config --global ssl.postBuffer 524288000 – Joe Sleiman Sep 04 '16 at 10:19
  • @JoeSleiman Just in case, can you unzip and try with Git 2.10.0? https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/PortableGit-2.10.0-64-bit.7z.exe – VonC Sep 04 '16 at 10:21
  • oops now it's working i don't know why ??? even i did all what you say before ...omg....any way thankss @VonC if i face any other problem i will post it here – Joe Sleiman Sep 04 '16 at 10:48
  • but if someone have solution by visual studio 2015... cz it may done by visual studio when i click publish so i think it pushed to tfs from visual studio not from cmd – Joe Sleiman Sep 04 '16 at 10:55