Version Control for website with ftp only access
Hi,
I am working with some others on a web page and we are looking for a version control system to manage the code (html, css, php, javascript) of the page.
Unfortunately we have only access via ftp to the server (no ssh). So we need something that allows the normal work flow, i.e.:
user A and B fetch the code, and edit it. A pushes the code, B fetches again, merges, pushes and so on...
I had a look on git (which I use for my other projects) but as far as I know it does not allow a push over ftp. I had also a look at git-ftp (http://wiki.github.com/ezyang/git-ftp/) but this seems not to provide merging.
Does anybody knows a way to manage files with a version control system via ftp? It's OK if its not git.
Or do we need a better web hoster with ssh access?
Thanks a lot and best regards,
Michael
Comments
-
After a bit of googling, I found that someone on this page suggested using CurlFtpFS to mount the FTP target locally, and then use Git as you would with any other local repository.
I have to quote the author of that post on this potential problem though:
One workaround I can think of, would be to implement a lock file and make a couple of wrapper scripts around your Git commands. For instance, instead of just using git push to the mountpoint (say /mnt/ftp/) , you could create a script that:Caution: This isn't a good idea if you plan to have multiple users to write to your git repo. As FTP has no mechanism to LOCK access. You will end up with a corrupt repo. Test before taking to production.
[ol][li]Tries to remove the file /mnt/ftp/lock. If the action fails (because the file was already removed by someone else), the script aborts.[/li][li]Runs git push to /mnt/ftp/.[/li][li]Recreates the empty file /mnt/ftp/lock (with touch), to again enable access for other users.[/li][/ol]
Hope this helps
0 -
Thanks a lot for this idea.
I did not know that one can mount ftp targets. I will give it a try and than report back.
But the missing LOCK feature could be a big problem. We are at the moment two developer, so this could lead into troubles. The wrapper script checking for a lock-file could be a workaround here. I think I will also give this a try.
The next problem I am coming to see, is that the other developer uses windows. But first I try to figure it out myself and than I try to convert him (or find a similar solution for systems without CurlFtpFS).
Best regards,
Michael0 -
It should be possible to mount the FTP drive locally in Windows too using something like NetDrive (the website claims it is free for home use).The next problem I am coming to see, is that the other developer uses windows.
I've never tried working with Git on Windows though. You could try Cygwin to use Git from a Linux environment inside his Windows installation, and apparently there is also a native version and various GUIs available too (Git Extensions, TortoiseGit). I'm not sure how you would go about forcing the graphical tools to check for a lock file though, so if you're writing a couple of scripts for your Linux environment anyway, letting him use Git from within Cygwin might be the best choice.0
Categories
- All Categories
- 175 LFX Mentorship
- 175 LFX Mentorship: Linux Kernel
- 745 Linux Foundation IT Professional Programs
- 372 Cloud Engineer IT Professional Program
- 168 Advanced Cloud Engineer IT Professional Program
- 73 DevOps IT Professional Program - Discontinued
- 3 DevOps & GitOps IT Professional Program
- 98 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- AI & ML Training
- Blockchain & Decentralized Identity Training
- 1 Cloud & Containers Training
- Cybersecurity Training
- DevOps & Site-Reliability Training
- Linux Kernel Development Training
- Networking Training
- Open Source Best Practice Training
- System Administration Training
- System Engineering Training
- Web & Application Development Training
- 2 LFD103-JP クラス フォーラム
- 4 LFD210-CN Class Forum
- 764 LFD259 Class Forum
- 681 LFS101 Class Forum
- 2 LFS158-JP クラス フォーラム
- 162 LFS207 Class Forum
- 3 LFS207-DE-Klassenforum
- 4 LFS207-JP クラス フォーラム
- 61 LFS241 Class Forum
- 52 LFS242 Class Forum
- 42 LFS243 Class Forum
- 19 LFS244 Class Forum
- 4 LFS250-JP クラス フォーラム
- 166 LFS253 Class Forum
- 1.4K LFS258 Class Forum
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 768 Linux Distributions
- 81 Debian
- 67 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 106 Mobile Computing
- 18 Android
- 73 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 946 Programming and Development
- 310 Kernel Development
- 618 Software Development
- 979 Software
- 371 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)