On Fri, 2011-03-25 at 12:39 +0530, Rony Bill wrote: > Could you guide me on this process? > >
1. register for an account at bitbucket and set up a repository - that is easy 2. make sure you have mercurial installed in your system (apt-get install mercurial) 3. put your script and any support files in a separate directory 4. run hg init - you will now have a mercurial repository 5. run hg add <filename> (this will add each file) 6. run hg commit -m 'some comment' -u username 7. the run hg push https://bitbucket.org/bitbucketusername/repositoryname 8. voila - your code is under version control and on the net (noble prize is around the corner) 9. whenever you change your code, do a commit and a push -- regards KG http://lawgon.livejournal.com Coimbatore LUG rox http://ilugcbe.techstud.org/ -- http://mm.glug-bom.org/mailman/listinfo/linuxers

