Apache 配置文件 /etc/httpd/conf/httpd.conf http 代理配置 vim /etc/httpd/conf.d/svn.conf 第一、启动、终止、重启 systemctl start httpd.service #启动 systemctl stop httpd.service #停止 systemctl restart httpd.service #重启 第二、设置开机启动/关闭 systemctl enable httpd.service #开机启动 systemctl disable httpd.service #开机不启动 第三、检查httpd状态 systemctl status httpd.service 将目前目录下的所有文件与子目录的拥有者皆设为 runoob,群体的使用者 runoobgroup: chown -R runoob:runoobgroup * SVN # -d : 守护进程 -r : svn数据根目录 svnserve -dr /var/svn #用root权限启动 查看SVN服务: ps aux|grep svnserve #默认端口为:3690 将文件checkout到本地目录 svn checkout path(path是服务器上的目录) 例如:svn checkout http://172.16.52.36/test/ 简写:svn co 往版本库中添加新的文件 svn add file 例如:svn add test.php(添加test.php) svn add *.php(添加当前目录下所有的php文件) gradlew assembleDebug 在build\Output中生成debug签名的apk gradlew assembleRelease 在build\Output中生成Release签名的apk gradlew assemble 2个都生成 gradlew test 跑单元测试用例用