git-proxy icon indicating copy to clipboard operation
git-proxy copied to clipboard

If the repo does not end in .git, cannot process the remote repo

Open grovesy opened this issue 5 years ago • 0 comments

Take a local repo add a remote e.g. git remote add proxy http://localhost:3000/finos/datah.git

Make a push through the proxy -- ok

git push proxy

__remove the remote __

git remote remote proxy 

Add the remote back without the .git ending

git remote add proxy http://localhost:3000/finos/datahub
git push proxy  # errors with 500

The proxy is parsing the URL be looking for .git

grovesy avatar May 22 '20 14:05 grovesy