svn.nginx.org repository changes
Sergey Budnevitch
sb at waeme.net
Wed Aug 24 08:21:41 UTC 2011
FYI svn://svn.nginx.org structure has changed. Previously there was one repository svn.nginx.org and /nginx directory was
inside this repository. Since we need to add one more repository with nginx.org site sources, /nginx directory was striped from
original repository. New structure:
svn://svn.nginx.org/nginx - repo with nginx sources
svn://svn.nginx.org/nginx.org - repo with nginx.org site sources
Those who need to fix old checkout may run this simple script
for dir in `find . -name ".svn" -type d`; do
find $dir -type f -exec perl -pi -e 's|svn://svn.nginx.org$|svn://svn.nginx.org/nginx|' {} \;
done
More information about the nginx-devel
mailing list