search
top

Ignore directory in SVN

On the command line, go to the directory you want to ignore. In the directory, type:

svn propset --quiet svn:ignore '*' .

How to create and extract a tar-file (.tgz) of a directory

Create:

tar -cf your-tarfile.tgz your-directory/

Extract:

tar -xf your-tarfile.tgz your-directory/

How to display the filesize of directories

du -ch | grep total

top