-
-
Recent Posts
Recent Comments
Categories
- Bash
- BerkeleyDB
- Browsers
- Cable
- Chrome
- Cool Problems
- CPAN
- CSS
- Data Structures
- Databases
- DNS
- Editors
- Errors
- Everything Else
- Fedora
- Firefox
- Firewall
- Flash
- Forking
- Hardware
- HTML
- ImageMagick
- Images
- Internet Explorer
- IpTables
- Lingo
- Linux
- Log4perl
- Mediawiki
- Monitoring
- Munin
- MySQL
- Netgear
- Perl
- PHP
- PhpMyAdmin
- Postfix
- Regular Expressions
- Routers
- RPM
- Samba
- Screen
- SSH
- SSHFS
- Subversion
- Synergy
- Troubleshooting
- Ubuntu
- VIM
- Windows
- Windows Vista
- Wordpress
- YUM
Blogroll
Archives
Tags
September 2010 M T W T F S S « Aug 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Meta
CNN.com- Bonnie Blue actress from 'GWTW' dies
- President to aides: Find economic spark
- Hurricane Earl downgraded as it approaches East Coast
- Workers rescued after oil platform fire
- BP uncaps oil well in Gulf
- Mideast peace talks start
- Convicted killer spared death penalty
- Opinion: Social Security can help states
- U.S., Iran battle on basketball court
- She drops 100 pounds, gains new life
BBC- Europe agrees finance watchdogs
- ICC chief executive on cricket charges
- Explosion on Gulf of Mexico rig
- Tanker runs aground off N Canada
- DCAL cuts 'will mean job losses'
- Pakistan trio hit by ICC charges
- Strike 'kills Afghan civilians'
- Bid for Middle East peace begins
- The mint with a whole lot of food miles
- Man 'strangled wife and hid body'
AL JAZEERA ENGLISH (AJE)
Category Archives: Subversion
How to SVN merge directories recursively
The correct way to recursively merge two branches using Subversion: svn merge target_dir@revision source_dir@revision working_dir Notice: working_dir is most likely the target_dir target_dir comes before source_dir Use this example when you’re in the working directory you’re trying to merge into: svn … Continue reading
Posted in Linux, Subversion
Leave a comment
Change file permissions in Subversion
svn propset svn:executable “*” myfile.txt
Posted in Linux, Subversion
Leave a comment
How To Use SVN merge
If you created a branch and want to merge your branch changes into trunk, here’s what to do: svn merge trunk_path@head branch_path@head .
Posted in Subversion
Leave a comment
How to setup a basic SVN repository and server
Become root and install subversion via yum # yum install -y subversion Create your svnroot directory # mkdir -p /home/svnroot # svnadmin create /home/svnroot Edit your svnserve.conf # vim /home/svnroot/conf/svnserve.conf Your basic svnserve.conf will look like this: [general] anon-access = … Continue reading
Posted in Linux, Subversion
Leave a comment