Re: Keeping src sync'd between two different machines

2011-04-28 Thread Lindsay Mathieson
On 29 April 2011 15:10, Kevin Krammer wrote: > > In this case you might want to consider a personal clone on git.kde.org > > http://community.kde.org/Sysadmin/GitKdeOrgManual#Personal_clones_of_project_repositories Perfect! Thanks Kevin -- Lindsay >> Visit http://mail.kde.org/mailman/listinf

Re: Keeping src sync'd between two different machines

2011-04-28 Thread Lindsay Mathieson
On 29 April 2011 15:00, Leif Andersen wrote: > That solution should also work.  The largest problem I would see would be > someone taking code which isn't really ready for public consumption yet. > But if you put a notice there saying that the repo can be extremely unstable > at times (or whatever

Re: Keeping src sync'd between two different machines

2011-04-28 Thread Valentin Rusu
Hello, for file sync I'm using unison. Your linux distribution surely have a package with it. valentin Lindsay Mathieson a écrit : What's the best way to go about this? e.g I'm working on a private rekonq branch cloned from git clone git://git.kde.org/rekonq and I'd like to do so from two PC

Re: Keeping src sync'd between two different machines

2011-04-28 Thread Kevin Krammer
On Friday, 2011-04-29, Lindsay Mathieson wrote: > On 29 April 2011 14:44, Leif Andersen wrote: > > If you have ssh access to your computers directly, you can push and pull > > from them directly. > > > > git remote add ssh:// > > > > Then it's just as simple matter to pull and push to that ser

Re: Keeping src sync'd between two different machines

2011-04-28 Thread Leif Andersen
That solution should also work. The largest problem I would see would be someone taking code which isn't really ready for public consumption yet. But if you put a notice there saying that the repo can be extremely unstable at times (or whatever stability you plan on keeping it at), it should work

Re: Keeping src sync'd between two different machines

2011-04-28 Thread Lindsay Mathieson
On 29 April 2011 14:44, Leif Andersen wrote: > If you have ssh access to your computers directly, you can push and pull > from them directly. > > git remote add  ssh:// > > Then it's just as simple matter to pull and push to that server by using the > name you gave it. Thanks Leif, its a possibi

Re: Keeping src sync'd between two different machines

2011-04-28 Thread Leif Andersen
If you have ssh access to your computers directly, you can push and pull from them directly. git remote add ssh:// Then it's just as simple matter to pull and push to that server by using the name you gave it. Good luck. ~Leif Andersen On Thu, Apr 28, 2011 at 22:36, Lindsay Mathieson < lind

Keeping src sync'd between two different machines

2011-04-28 Thread Lindsay Mathieson
What's the best way to go about this? e.g I'm working on a private rekonq branch cloned from git clone git://git.kde.org/rekonq and I'd like to do so from two PC, my home and work ones. How do I keep the changes sync'd between the two machines without committing back to the kde git server? -- Lind