|
Home > Archive > Unix Programming > December 2004 > How to keep source code in sync on unix and winxp?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to keep source code in sync on unix and winxp?
|
|
| James Johnson 2004-12-16, 7:45 pm |
|
I've got a lot of .cpp and .h files that I am moving back & forth between unix and windows to keep them in sync. They compile in both unix and windows. Sometimes I work in unix, sometimes in windows.
What is the best way to automatically keep these files in sync? I'm doing it manually now, but it is becoming time consuming. The unix machine is pretty secure. I only have a ssl connection (pscp,
putty).
I could write a program to do it, but was wondering if there is already something.
Jim
| |
| Måns Rullgård 2004-12-16, 7:45 pm |
| James Johnson <jjjhnson2-1779231@yahoo.com> writes:
> I've got a lot of .cpp and .h files that I am moving back & forth
> between unix and windows to keep them in sync. They compile in both
> unix and windows. Sometimes I work in unix, sometimes in windows.
>
> What is the best way to automatically keep these files in sync? I'm
> doing it manually now, but it is becoming time consuming. The unix
> machine is pretty secure. I only have a ssl connection (pscp, putty).
>
> I could write a program to do it, but was wondering if there is
> already something.
You need an SCM system. Take a look at CVS, Subversion, Arch,
BitKeeper, or any other you may happen to find.
See http://better-scm.berlios.de/ for some comments about some of
these.
--
Måns Rullgård
mru@inprovide.com
| |
| Rich Teer 2004-12-16, 7:45 pm |
| On Wed, 15 Dec 2004, James Johnson wrote:
> I've got a lot of .cpp and .h files that I am moving back & forth
> between unix and windows to keep them in sync. They compile in both
> unix and windows. Sometimes I work in unix, sometimes in windows.
>
> What is the best way to automatically keep these files in sync? I'm
The network is the computer, remember? Set up an NFS server (or SAMBA
if you must), and share one set of files to both computers.
> I could write a program to do it, but was wondering if there is already something.
NFS has only been around, oh, 20 years or so. :-)
--
Rich Teer, SCNA, SCSA, author of "Solaris Systems Programming"
. * * . * .* .
. * . .*
President, * . . /\ ( . . *
Rite Online Inc. . . / .\ . * .
.*. / * \ . .
. /* o \ .
Voice: +1 (250) 979-1638 * '''||''' .
URL: http://www.rite-online.net ******************
| |
| Fredrik Roubert 2004-12-16, 7:45 pm |
| On Thu, 16 Dec 2004 04:22:08 +0100, Måns Rullgård wrote:
>
> You need an SCM system. Take a look at CVS, Subversion, Arch,
> BitKeeper, or any other you may happen to find.
I use CVS myself, and with WinCvs on Windows it works like a charm.
Cheers // Fredrik Roubert
--
Möllevångsvägen 6c | +46 46 188127
SE-222 40 Lund | http://www.df.lth.se/~roubert/
| |
| Marc Rochkind 2004-12-18, 2:47 am |
| Yes, indeed... WinCvs is really well done.
--Marc
rochkind@basepath.com
www.basepath.com/aup
"Fredrik Roubert" <roubert@df.lth.se> wrote in message
news:cprtol$ler$1@news.lth.se...
> On Thu, 16 Dec 2004 04:22:08 +0100, Måns Rullgård wrote:
>
>
> I use CVS myself, and with WinCvs on Windows it works like a charm.
>
> Cheers // Fredrik Roubert
>
> --
> Möllevångsvägen 6c | +46 46 188127
> SE-222 40 Lund | http://www.df.lth.se/~roubert/
|
|
|
|
|