On Fri, Jul 10, 2009 at 9:15 AM, Vivek Sharma<[email protected]> wrote: > > 1. I have create a local directory, and made some sub-directories > and files in it. > 2. registered by project on code.google.com/hosting > 3. install Mercurial and did > hg init > 4. copied the auto-generated password from google into a file, > still dont know for what. > > Now how do i upload files my local to the repository on google. Tired > googling a lot, almost all the information is available for SVN users.
Instead of googling randomly, it sounds like you need basic lessons in how to use Mercurial. Your questions aren't about "how to use google code" but "how to use hg". I suggest you start with the online hg book: http://hgbook.red-bean.com . And mercurcial's website has all sorts of other FAQs and tutorials, as well as mailing lists where users can help each other (see http://mercurial.selenic.com/wiki/MailingLists) 'hg init' converts your local directory into a repository. Now you need to 'hg add' everything, then 'hg commit'. Now the code will be in your local repository (which lives in the hidden .hg/ directory). To share your code with the world, you need to "push" your repository's changes to the public googlecode one: "hg push https://projectname.googlecode.com/hg". The hg client will prompt you for authentication, and you'll use your username and your auto-generated googlecode password. This should get you started. Try the more specific mercurial lists for further mercurial help. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Hosting at Google Code" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-code-hosting?hl=en -~----------~----~----~----~------~----~------~--~---

