jasperem
jasperem
Hi @darkowlzz, to fix Push you need to change `req, err = http.NewRequest("POST", url+"/info/refs?service=git-upload-pack", nil)` in https://github.com/darkowlzz/git2go/blob/7f64702bd0195300f75d0e5ff24706dd03776363/http.go#L94 to `req, err = http.NewRequest("POST", url+"/info/refs?service="git-receive-pack", nil)`. After these changes, your implementation works...
@darkowlzz thx for your work! I will test it and report how it works for me
@darkowlzz if you replace [`req, err = http.NewRequest("POST", url+"/info/refs?service=git-receive-pack", nil)`](https://github.com/libgit2/git2go/blob/3d4b9b97d15e4d0d7366e2382a9c17450275cc65/http.go#L113) with `req, err = http.NewRequest("POST", url+"/git-receive-pack", nil)` everything works for me. Thank you very much for your work!