Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I and another are developing a PHP application using one test server.

We are editing using netbeans on windows 8 and pushing to linux box.

every once in awhile we are stomping on each others files.

So i would like to do a windiff type comparison to make sure we are in sync.

I am looking for some suggestions and would be best if someone has been successful with this.

one option is to use WinSCP (or maybe Swish), mount the linux box via SFTP and then use windiff.exe to compare?

So does anyone have any better options/ ideas?

So we are using git both locally and have a remote setup. I guess the problem is we are small and only have one devel server. So i am not really looking for procedure help, more on the best way to solve the problem that i have that can not be changed.

share|improve this question
4  
this is a job for Revision control software – Dagon Dec 6 '12 at 19:21
You should really think about implementing some soruce control like svn or github. – Iznogood Dec 6 '12 at 19:21
3  
First, use SCM as suggested above. Secondly, each developer should have their own environment on the server -- e.g. with separate virtual hosts and databases. As your organization scales by adding engineers, the practice of sharing an environment and manually diffing will not scale. – Frank Farmer Dec 6 '12 at 19:23

closed as off topic by sudo_O, tereško, Mario, Bo Persson, Explosion Pills Dec 7 '12 at 0:11

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

Set up git (or svn) repository - all developers fetch their files out of that and commits their changes back. When time is due for a new version, the files are checked out from the repo.

Two months ago I would have recommended svn (subversion) but then I started using git and have never looked back...

share|improve this answer

I would install subversion (SVN) or git which allows you to compare and merge files as you are working and you can create different development paths for each if you want to get a little more complex.

share|improve this answer
Personally, I'd start all new projects in git rather than SVN -- branching/merging is much smoother in git. This is a subjective choice of course, but suggesting SVN specifically is questionable these days. – Frank Farmer Dec 6 '12 at 19:25
2  
Yeah I just suggested what works for me and was easy to setup and manage. I don't have much experience with git, but you make a valid point to suggest in a more vague response to allow them to choose what they like best. – fanfavorite Dec 6 '12 at 19:29

Not the answer you're looking for? Browse other questions tagged or ask your own question.