|
From: Michael P. <mic...@gm...> - 2010-10-15 04:04:12
|
Hi Dika, You can get the latest code from the project's GIT repository. GIT is a CVS system. Install it and then take the head code with this git URL. git://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc You can create a GIT repository with the following commands: mkdir pgxc cd pgxc git init git remote add pgxc git:// postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc #Upload code to your local machine git fetch pgxc git branch --track master pgxc/master #extract branch master on your local machine git checkout master If you want to install GIT, have a look at their website http://git-scm.com/ . They have also some documentation here http://git-scm.com/documentation. I also compiled a small manual here, I believe it is helpful. http://michaelpq.users.sourceforge.net/manuals/git_help.html Regards, -- Michael Paquier http://michaelpq.users.sourceforge.net |