open terminal and write command:
diskutil unmount force /Volumes/NAME-OF-DRIVE
chrome://flags/#allow-insecure-localhost
Enable.svn info
svn list
svn up
svn co http://your-svn-repo/your-project-name/[trunk]
svn propget svn:externals . > ext.txt
svn propset svn:externals -F ext.txt .
svn propset svn:ignore -F .svnignore .
svn propset svn:global-ignore -F .svnignore .
svn commit --depth empty . -m 'Modify externals definition'
svn propdel [svn:externals | svn:ignore | ...]
svn commit [path-of-files-to-commit] -m 'YOUR COMMENT'
svn sw http://your-svn-repo/your-project-name/[branch / tag]
svn log --limit 10 | svn log -l 10
sudo mkdir /etc/apache2/ssl
sudo openssl genrsa -out /etc/apache2/ssl/localhost.key 2048
sudo openssl req -new -x509 -key /etc/apache2/ssl/localhost.key -out /etc/apache2/ssl/localhost.crt -days 3650 -subj /CN=localhost
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain /etc/apache2/ssl/localhost.crt
edit /etc/apache2/httpd.conf
LoadModule socache_shmcb_module libexec/apache2/mod_socache_shmcb.so
LoadModule ssl_module libexec/apache2/mod_ssl.so
Include /private/etc/apache2/extra/httpd-ssl.conf
edit /etc/apache2/extra/httpd-vhosts.conf
<VirtualHost *:443>
ServerName localhost
DocumentRoot "/Users/indieweb/Sites/localhost"
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /etc/apache2/ssl/localhost.crt
SSLCertificateKeyFile /etc/apache2/ssl/localhost.key
<Directory "/Users/indieweb/Sites/localhost">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
edit /private/etc/apache2/extra/httpd-ssl.conf
#SSLCertificateFile "/private/etc/apache2/server.crt"
#SSLCertificateKeyFile "/private/etc/apache2/server.key"
SSLCertificateFile "/etc/apache2/ssl/localhost.crt"
SSLCertificateKeyFile "/etc/apache2/ssl/localhost.key"
sudo apachectl restart