Deploying git archives with FTP -


i'd deploy git archive through ftp connection webspace. it's sharehoster don't have root nor console access , no git software. set this:

git remote add deploy ftp://user:password@host 

... , try deploy this:

git push deploy master 

but get: "server denied change given directory". tried create git's directories manually, didn't change anything. has better advice changing hoster?

you cannot send git data through ftp server. however, if want deploy worktree, repo files is, can try phploy.

disclaimer: i've created phploy.


Comments

Popular posts from this blog

html - jquery - p element wont show after I hid it -

python - BeautifulSoup: How to get the nearest tag -

php - Return Last Insert ID with PDO -