views:

358

answers:

2

I normally organize my project in multiple files. Now, for the first time I have created a project at code.google.com/hosting.

How to add files to the project?

The project has got directory structure and many files. I want them to be visible under trunk (like it is in other projects).

NOTE: I am novice in this area (I have no clue about what to do). I am searching for an UPLOAD button.

+3  A: 

You need to have a source code management system to be able to do that. Google Code typically uses subversion. Either download the commandline version or a GUI wrapper like TortoiseSVN. Then, you can upload all your project files.

dirkgently
Thank you very much. TORTOISE ROCKS!!!
TheMachineCharmer
+1  A: 

Google Code uses Subversion for source control:

http://code.google.com/p/support/wiki/GettingStarted#Working_with_your_Source_Repository_on_the_Source_Tab

Ian Nelson