Posts Tagged ‘Versioning

SVN checkout over ssh

17, Jan 2009

Checks out over an SSH connection if no HTTPS access is available. For my own records:
1svn checkout svn+ssh://your_user@yourdomain.com/usr/local/svn/ReposName/trunk

If you want to ignore (skip) files inside a directory with SVN:
1svn pe svn:ignore smarty/templates_c
This will prompt you for a pattern (*.php) via your editor of choice. So you’ll need the EDITOR environment variable set in your ~bash.rc / .profile etc
1EDITOR=vi;  export EDITOR
Update (14/04/09): This only ignores files that are not already version controlled (inside [...]


top