Create a new repository:
- On the server: svnadmin create /svndir/reposname
- From the client: svn co svn://ip_address/reposname
cd reposname mkdir trunk mkdir tags mkdir branch svn add * svn ci
- Create a dump: svnadmin dump /svndir/repos/gwt > /backupDir/svn_gwt.dump
- Create the repository: svnadmin create /svndir/repos/gwt
- Load the repository: svnadmin load /svndir/repos/gwt < /backupDir/svn_gwt.dump
- Shows revisions 5 to 19 of a file or directory:
svn log -r 5:19 file/directory_name "svn diff"with no options compares the working directory with the version from the last check out.
To synchronize a repo:
ReplyDeletehttp://www.howtogeek.com/howto/ubuntu/change-ubuntu-server-from-dhcp-to-a-static-ip-address/