I do have an existing project on my internet server. now i decided to start git this. what i have to do to make a clean git out of it? What i tried / done so far on the server:
git init
git add .
git commit -m "initial"
than on locale machine:
git pull ssh://user@server/project
...
fatal: '/project' does not appear to be a git repository
fatal: Could not read from remote repository.
what are the steps i have to do?
thanks...