set a ftp repository with git
- by enboig
I want to change my repository from bazaar to git.
I installed Git (winXP) and tortoise with no problem, I set path variables, etc...
I have initialized my repository with:
git init
copied it using
cd ..
git clone --bare project.git
uploaded it to FTP, and when trying to access:
git clone *ftp_address*
Initialized empty Git repository in D:/project/.git/
Password:
error: Access denied: 530 while accessing *ftp_address*/info/refs
fatal: HTTP request failed
I checked and .../project.git/info/refs does not exists. What am I missing?
thanks
PD: *ftp_address* = 'ftp://user%[email protected]/git/project.git'