| new topic post reply | Tech Patterns Forum Index ==> Open Source and Free Software :: Applications and Projects |
|
techAdmin
Back to top
Status: Site Admin Joined: 26 Sep 2003 Posts: 1038 Location: East Coast, West Coast? I know it's one of them. |
Checkout this nice svn how-to.
Has most of what you need to know, nice and brief. All the fun stuff: :: Code :: #Obtain a list of the possible projects to download from a SVN repository:
svn list --verbose svn://thanatermesis.org #Download the sources of a project: # svn co is the same as svn checkout svn co svn://thanatermesis.org/test1 destdir #Update a project downloading the last possible version: svn update # See the differences within the repository svn diff # Send modifications of the files or commit svn commit -m 'Fixed the bug of double interfaces launched' svn commit evidence-gui* -m 'Commiting the evidence-gui files' # Upload it in the next commit svn add file svn add directory svn add images/*.png and so on, just posted these here as a reminder. Also good, and more in depth, is this svn faq, which showed me for example how to update a log message that I submitted by accident :: Code :: svn propset -r <revision number> --revprop svn:log "Updated log message"
Like so: svn propset -r 92 --revprop svn:log "I removed some bad code in this module/" The URL is not needed if you start it in your local svn location. |
|
All times are GMT - 8 Hours |
|
Contact Us
Hosting: Pair Networks: 0.067
Forum Software © 2001–2009 phpBB
techForum Style © 2003–2009 techpatterns.com
info
Hosting: Pair Networks: 0.067
Forum Software © 2001–2009 phpBB
techForum Style © 2003–2009 techpatterns.com
info