1.增加404腾讯公益配置
按照配置说明,新建 404.html 文件,放在主题 next 的 source 文件夹根目录下,配置文件 _config.yml 中
信息如下:
1 | menu: |
2.“Updates were rejected because the tag already exists” when attempting to push in SourceTree
tag 已经存在,使用下面命令进行提交,覆盖,一次获取所有新增的标签,进行覆盖
1 | git pull --tags |
3.Github 上怎样把新 commits 使用在自己的 fork 上
首先要先确定一下是否建立了主repo的远程源:
1 | git remote -v |
如果里面只能看到你自己的两个源(fetch 和 push),那就需要添加主repo的源:
URL为原来repo的源
1 | git remote add upstream URL |
然后你就能看到upstream了。
如果想与主repo合并:
1 | git fetch upstream |
4.Mac如何关闭指定port
查询 port 对应的 pid
1 | lsof -i: port |
关闭 pid
1 | sudo kill -9 pid |