Search This Blog

06 August, 2011

How to check-out a particular version of code from svn?

There are different ways you can achieve it, below are the different ways

svn checkout svn+ssh://<ipaddress>/Project/trunk@<revision number>

example: 
1) svn checkout svn+ssh://192..168.1.10/project/trunk@1978
2) svn checkout -r 1978  svn+ssh://192..168.1.10/project/trunk

1 comment:

  1. Checkout other than the default username:
    svn co svn+ssh://username@/Project/trunk@

    ReplyDelete

tmux enabling mouse interaction

Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...