May 2009

svn ignore on the command line

How to ignore files on command line with subversion.

I’ve had to google this so many times I thought I would post it.

svn propedit svn:ignore ./some_path

You need this if you want to ignore more than one pattern.
Will open a text editor where you can add multiple entries.

You can also do:

svn propset svn:ignore -F file_to_ignore ./some_path

The -F means ignore a file.

for example:

For directory target

svn propset svn:ignore target .

ignores the target directory in the current dir.

You have to remember to commit the directory you have just set the property on:

svn ci -m "Setting the ignore property to ignore target directory" -N .

The -N means non-recursive so just commit the current directory.

  • Share/Bookmark

code
svn

Comments (2)

Permalink

Wolfram takes on google?

For those who haven’t seen it ….

http://www76.wolframalpha.com/

Its an interesting experiment in structuring the information which is available out there. It doesn’t work by crawling the net, its a massive knowledge based system which has information input into it.

It doesn’t always know what to do with your question but its quite good at drawing pictures of equations.

  • Share/Bookmark

thoughtblog
web

Comments (1)

Permalink

UK English Spell Checking in OS X

System Preferences > International > Languages and click the ‘Edit List…’ button, select British English and click ‘OK’. Now drag it to the top of the list and everything should be in British English.

  • Share/Bookmark

os x

Comments (0)

Permalink

RESTfull uri’s with Spring 2.5

Spring 3 will introduce annotated URI mapping for restfull like uris. But you might not be able to install 2.5 for some reason.

In this case, the following article might help:

UrlRewriteFilter

it describes the core project UrlRewriteFilter Project

  • Share/Bookmark

professional journal
web

Comments (0)

Permalink