Posts Tagged ‘Linux

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 [...]

I recently moved over to the 64bit version of Fedora Core 8.
My plan was to compile both Apache and PHP from source, as they require a fair amount of customisations for my needs.
The Apache compile went without problems but using my regular configure directives for PHP (5.2.5) threw this error:
1configure: error: mysql configure failed. Please [...]


top