代码改变世界

随笔档案-2021年6月9日

MAC提示Operation not permitted

2021-06-09 12:50 by Tanwheey, 4437 阅读, 收藏,
摘要: THMAC-xxxx:~ root# chmod 777 /Users/xxx/Documents/chmod: Unable to change file mode on /Users/xxx/Documents/: Operation not permitted 苹果在 OS X El Capi 阅读全文

npm ERR! Failed at the bufferutil@1.3.0 install script 问题解决方法

2021-06-09 10:17 by Tanwheey, 1288 阅读, 收藏,
摘要: 报错: npm ERR! Failed at the bufferutil@1.3.0 install script. npm ERR! This is probably not a problem with npm. There is likely additional logging outpu 阅读全文

git本地仓库和远程仓库关联

2021-06-09 10:01 by Tanwheey, 3414 阅读, 收藏,
摘要: 1、创建远程仓库 2、初始化本地仓库git init git add . git commit -m "desc" 3、关联远程仓库 git remote add origin https://github.com/fatedier/frp.git 4、第一次先拉取远程库中的README.md和.g 阅读全文