开发者

clone git repository to an FTP server

开发者 https://www.devze.com 2023-02-08 22:00 出处:网络
I\'ve done quite a bit of searching on Stackoverflow and on various websites and can\'t seem to find a quick answer on how to clone a git repository from my local machine to an FTP server.

I've done quite a bit of searching on Stackoverflow and on various websites and can't seem to find a quick answer on how to clone a git repository from my local machine to an FTP server.

I'm working with Ubuntu 10.04 L开发者_运维技巧TS. Also my webapp is being run on Heroku.


You don't clone a repository to a remote place, but from a remote place to your system.

If you want your repository on a FTP server, upload it by hand using an FTP client, and push your future commits by referring its FTP url.

On course, if you have SSH access to your server, you can also log in it, and clone from there.


Important note:

don't forget to do a git update-server-info before uploading the repository to your ftp server

and maybe adding it to a post-update script so that your info/refs file is current !

0

精彩评论

暂无评论...
验证码 换一张
取 消