1. I have create a local directory, and made some sub-directories and file 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, 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.

Do i have to create a branch on mercurial first. I am sorry if it is too silly, but how do i create one, the site does say anything create or upload or add.

Can anyone please share, how he started/uploaded his project?

link|improve this question

76% accept rate
feedback

2 Answers

up vote 5 down vote accepted

If you haven't created anything big in your local repo yet, the easiest way is the following.

Make a clone of the Google Code repository:

hg clone https://your_project.googlecode.com/hg your_local_repo

This will create a directory "your_local_repo" with a local repository in it. Make your changes here and

hg commit -m "Your commit message"

to commit the changes to your local repo. Then

hg push

to push the changes to the repository on GC.

link|improve this answer
@balpha-- have you used wiki feature locally for your any of your project. – Vivek Sharma Jul 10 '09 at 17:55
@balpha-- have you used wiki feature locally for your any of your project. If yes then is there any wikiSyntax-toolbarAttached-editor available for working on wiki entries. – Vivek Sharma Jul 10 '09 at 17:56
No, sorry I haven't, I'm afraid I can't help you there. – balpha Jul 10 '09 at 18:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.