I am converting repository from TFS to GIT, I am using git-tf tool. Currently I am at point where I have local repository and I am trying to push it on VSTS
I am using commands posted on VSTS:
git remote add origin https://app.visualstudio.com/MyProject/_git/MyRepo
git push -u origin --all
push output is as follow:
Counting objects: 1636, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (1580/1580), done.
error: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 10053
Writing objects: 100% (1636/1636), 1.34 GiB | 13.20 MiB/s, done.
Total 1636 (delta 1180), reused 0 (delta 0)
error: unpack failed: error The tree object awert214681a38eae868f968d9f49dbc7236ba8e was rejected: The tree contains an entry with an invalid entry name of '.git'.
Everything up-to-date
not sure if first error
error: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 10053
is responsible of second one
In the end repository was not pushed on VSTS and I am not sure how to fix it.
I was checking in repo browser and '.git' directory was not added to it. Also I have done some simple directories search and there is no other '.git' directory than one which is placed in root directory.
If anyone has any suggestions/ideas then I will appreciate those
Thanks for help