c0rnf3d Posted January 23, 2009 Share Posted January 23, 2009 not sure if this is the right board, but not sure where else to use. backstory, for a project im working on i've been forced to use CVS, however this doubles the amount of time for each save. I edit the file directly on the remote server then i copy/paste the changes into cvs and commit my changes. (not a ton of work but another 20/30 sec for every save... and when you change a webpage 200 times, its a but problematic)... i guess my question is, are there any good cvs's for web development -- from what ive read so far on other systems everything seems to be for huge projects with multiple people working on it. --- is there for example a version control system which sits below the webserver so that you save a file to the version control and whatever the newest version of a file is, is pulled up when the user hits the webpage. So that, if you commit a change to version control that change instantly shows up on the website. Basically the webserver would sit ontop of the version control? Anyways, thoughts on this? Am i missing something? Link to comment https://forums.phpfreaks.com/topic/142126-php-version-control/ Share on other sites More sharing options...
rhodesa Posted January 23, 2009 Share Posted January 23, 2009 what are you using to checkout/commit to CVS? you should be able to checkout the project to a folder, work on it there and save, then commit directly in that folder. personally, i use subversion, but it should be the same concept. after you edit 200 files, you should be able to commit all changes for the entire project folder. edit: this should be moved to Editor Help or Miscellaneous Link to comment https://forums.phpfreaks.com/topic/142126-php-version-control/#findComment-744420 Share on other sites More sharing options...
c0rnf3d Posted January 23, 2009 Author Share Posted January 23, 2009 i can check a folder out. after doing so i am able to commit back to the version system (as a whole). BUT i still then have to upload every single file i changed to the webserver. Link to comment https://forums.phpfreaks.com/topic/142126-php-version-control/#findComment-744495 Share on other sites More sharing options...
rhodesa Posted January 23, 2009 Share Posted January 23, 2009 ah, your webserver is not the same as where you write the code. do you at least have a webserver on your system you write code to test as your write code? Link to comment https://forums.phpfreaks.com/topic/142126-php-version-control/#findComment-744507 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.