SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Working with Projects
Primary tabs
Checking out a project
cd /path/to/checkout/location
svn checkout http://<your_svn_server>/svn/projectname/trunk <directory>Check the status of your project
svn statusStatus code meanings:
L abc.c # svn has a lock in its .svn directory for abc.c
M bar.c # the content in bar.c has local modifications
M baz.c # baz.c has property but no content modifications
X 3rd_party # this dir is part of an externals definition
? foo.o # svn doesn't manage foo.o
! some_dir # svn manages this, but it's either missing or incomplete
~ qux # versioned as file/dir/link, but type has changed
I .screenrc # svn doesn't manage this, and is configured to ignore it
A + moved_dir # added with history of where it came from
M + moved_dir/README # added with history and has local modifications
D stuff/fish.c # this file is scheduled for deletion
A stuff/loot/bloo.h # this file is scheduled for addition
C stuff/loot/lump.c # this file has conflicts from an update
R xyz.c # this file is scheduled for replacement
S stuff/squawk # this file or dir has been switched to a branchAdd files or directories to the repo
svn add file_or_directoryMove files or directories in your project
svn move source destinationIgnore a folder in your checked-out copy
Useful for temp files you don't want to commit back to the repo
svn propset svn:ignore '*' ./some_pathCommit your changes back to the repo
svn commit -m "These are the changes I made"Relocate a project
Changed the location of the svn repository (eg. moved it to a different hostname):
svn switch --relocate old_location new_locationResync trac with the svn repository
If, for example, you deleted an svn repository and started over but kept the trac project, you'll get an error message from trac "'trac-admin resync' operation is needed". Resync the svn repo with trac:
trac-admin /var/trac/projectname resync- Log in to post comments