Working with google code and subversion
August 8th, 2008First, create your project then upload your unversioned source code using svn client:
svn import sourcedir https://myproject.googlecode.com/svn/trunk --username myaccount
- when prompt for authentication, get your password from the ‘Source’ tab
Get a working copy of your versioned source code:
svn checkout https://myproject.googlecode.com/svn/trunk/
If you’ve made changes on your working copy you can apply those changes on the repository by simply this command:
svn commit -m "Put a descriptive comment."
- you have to be inside your working copy/directory.
And if by chance you forgot or simply wanna change your comment on that revision, you can add or change it:
svn propset --revprop -r 26 svn:log "Fixed someMethod() parameter."
If multiple developers are currently working on the project/repository, you can use this command to update your working copy:
svn update
- this will incorporate their changes into your working copy.
- again you must be on the working copy/directory.
One Response to “Working with google code and subversion”
Leave a Reply
Pages
Categories
- Apache (1)
- CSS (2)
- Database (2)
- Development (9)
- Gadget (3)
- Google (4)
- How-To (16)
- HTML (2)
- Internet (4)
- JavaScript (2)
- Linux (15)
- Music (3)
- MySQL (2)
- PHP (4)
- Python (1)
- Sport (1)
- Subversion (4)
- Uncategorized (3)
- Windows (6)
- Wordpress (2)
Archives
















This is great info to know.