svn篇
在使用hbuilder导入svn的内容时,出现了报错
The default interactive shell is now zsh.
To update your account to use zsh, please run `chsh -s /bin/zsh`.
For more details, please visit https://support.apple.com/kb/HT208050.
翻译是:
现在,默认的交互式外壳为zsh。
要更新您的帐户以使用zsh,请运行`chsh -s / bin / zsh`。
有关更多详细信息,请访问https://support.apple.com/kb/HT208050。
查询得知,由于当下是新款的电脑,曾经用2018款导入了所有系统内容到新电脑里,设置一并导入来了,这个提示是官方希望我能够切换默认的 shell 到 zsh
完毕后,再次执行svn命令,提示
zeg@mzeg ~ % svnserve --version
zsh: command not found: svnserve
行,网传mac带svn,辟谣了,2020款没有带svn,自己装一个
brew install svn
好,提示 updating homebrew
接下来就是无脑无尽的报错(玩尼玛,垃圾mac)
如有报错,解决方式:地址链接
没有报错的话,在终端再输入
svnserve --version
提示底下类似的消息就是可以了:(弄这么半天,我装svn要干啥来着?)
svnserve,版本 1.14.1 (r1886195)
编译于 May 10 2021,16:06:25 在 x86_64-apple-darwin20.4.0
Copyright (C) 2021 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/
下列版本库后端(FS) 模块可用:
* fs_fs : 模块与文本文件(FSFS)版本库一起工作。
* fs_x : Module for working with an experimental (FSX) repository.
Cyrus SASL 认证可用。
启动mac os本地服务器 //2022-04-06
在终端输入 sudo apachectl start
启动服务器
在浏览器中输入127.0.0.1,点击确定,成功显示:It Works!
按command+shift+g
, 前往Apache服务器的本地文件地址: /Library/WebServer/Documents
把自己的文件,比如一张照片或者一个html放到该目录下,添加文件到本地服务器
在浏览器中输入对应目录名称,例如: http://127.0.0.1/test0
apatch的基本信息
查看apatch版本号:sudo apachectl -v
配置文件地址: /etc/apache2/httpd.conf (暂时用不到)
apatch服务器主机配置文件地址:/etc/apache2/extra/httpd-vhosts.conf
.apatch主要命令:
启动:sudo apachectl start
停止:sudo apachectl stop
备份源文件: sudo cp /etc/apache2/httpd.conf /etc/apache2/httpd.conf.backup
编辑配置文件sudu vi /etc/apache2/httpd.conf
设置服务器根目录为/Library/WebServer/Documents/