How to use SVN (Subversion) on Google Code hosting
|
|
Google has generously offered free hosting services for free open source developers to host their projects either by using Mercurial, Subversion or git.
This blog post touches on the basic on to use SVN to maintain source code repository on Google Code Hosting.
Assumptions
This tutorial assume that you have :
- Created an open source project on Google Code
- Installed subversion on your GNU/Linux operating system
- Have source code to import
Initial Import
You must perform initial check-in in order to use the SVN repository. To do that, you must go to your Google Code project, as shown in the screenshot.

From bash terminal, to import your project into Google Code, type:
svn import /path-to/src/ https://your-project-name.googlecode.com/svn/trunk/ --username [email protected] -m "initial import"
You'll be prompted to enter googlecode.com password, which you can generate from your Google project page
SVN commit
After initial import, your source code will be made available from Google Code hosting for public access.
You may 'commit' after you've made revision or alteration into the source code. to "commit" type:
svn commit -m "added new TextField to user-interface"
the -m specifies change log, you shouldn't commit without a proper log message as this will help other users to track the changes that you've made with your source code.
SVN add: For adding new source files
If you add new files to your source code, just type:
svn add <filename>
You may then proceed with "svn commit" to add the file to the repository server.
Recursively add unversioned files into SVN repository
If you've added several new files into source code working copy, these file will be unversioned and thus won't be committed to the subversion server.
You can use this command recursively add new unversioned files to svn repository.
svn status | perl -ne 's/^\?\s+(\S.+)$/\1/g;chomp;system("svn add \"$_\"");'
**taken from http://www.amiryan.org/2009/04/22/howto-recursively-add-unversioned-files-into-svn-repository/
Tags: google, linux, subversion, svn, tips, version control
Keep updated with the latest posts, be a part of over 1,000 subscribers! :
Subscribe to your email
You might also want to read...
- Google Code supports Open Source project hosting
- Google Code Hosting now supports Git!
- How to use SVN for beginners
- robots.txt – Uncrawlable code.google.com ?
- Dreamhost – my best Linux-based web hosting provider
- Halloween Specials: Unmetered and Unlimited Web Hosting Space
- Buzz!! – Yahoo like IM shake with Pidgin Nudge plugin


Leave a Comment