Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is version control possible on a shared host w/o shell access?

I have a client who's host doesn't allow shell access. Is there any multi-user revision control system that can work in that situation (on linux)? He's reluctant to switch hosts.

like image 693
sprugman Avatar asked Feb 28 '23 22:02

sprugman


1 Answers

Yes, because you don't do development directly on the production server! The content of your production server is just a view of your source repository, which is kept elsewhere so that work can be done on a separate dev server. This way, a stupid mistake on the dev server won't hose your production system. If that means doing a manual checkout to transfer the files, so be it.

like image 76
Joel Coehoorn Avatar answered Mar 28 '23 23:03

Joel Coehoorn