Let's say I have a local copy of my app and I push it to github and then use git-ftp to upload any changes to my server.
I would first use:
$ git ftp init -u <user> -p - ftp://host.example.com/public_html
which would upload all my files to the server and use git push for future uploads, right?
But what if I already have a copy on my server and want to set it up locally? I tried downloading my app files, used git init, pushed everything to github and then when I tried using git ftp push I received this error:
fatal: Could not get last commit. Network down? Wrong URL? Use 'git ftp init' for the inital push., exiting...
Then I used the git ftp init command and it worked, but it re-uploaded everything.
Is there any way to set this up without having to re-upload everything and just start using git ftp push?