Currently, I'm using XAMPP as my web server.
Now, I want to makes a git repository in my web server.
As a result, I want to run this command line perfectly:
$ git-config remote.upload.url http://paultester@<servername>/new-repo.git/
$ git push upload master
I followed this guideline: http://www.diggin-data.de/dd-cms/post/37/Installing+Git+http-backend+on+Windows+with+XAMPP
But I got this error
fatal: unable to access 'http://paultester@<servername>/new-repo.git/': Maximum (20) redirects followed
How can I fix this?
git-config remote.upload.url http://…should be written asgit remote add upload http://…orgit remote set-url upload http://…if the remote exists..git/configfile has[remote "upload"] url = http://paultester@<servername>/new-repo.git/