Submitted by admin on 2019, January 24, 6:02 PM
问题
报错:error: The requested URL returned error: 401 Unauthorized while accessing
git版本:1.7.1
解决方法一:指定用户
git clone https://github.com/org/project.git
换成
git clone https://username@github.com/org/project.git
或者
git clone https://username:password@github.com/org/project.git
在push或者pull出出现的话,则需要更改远程地址
git remote set-url origin https://username@github.com/org/project.git
解决方法二:去除验证
git config –global http.sslverify false
解决方法三:(推荐)
升级git 版本≥1.7.10
解决方法四:
添加ssh秘钥
--------------
刚创建的github版本库,在push代码时出错:
$ git push -u origin master To git@github.com:******/Demo.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'git@github.com:******/Demo.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Merge the remote changes (e.g. 'git pull') hint: before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
网上搜索了下,是因为远程repository和我本地的repository冲突导致的,而我在创建版本库后,在github的版本库页面点击了创建README.md文件的按钮创建了说明文档,但是却没有pull到本地。这样就产生了版本冲突的问题。
有如下几种解决方法:
1.使用强制push的方法:
$ git push -u origin master -f
这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。
2.push前先将远程repository修改pull下来
$ git pull origin master
$ git push -u origin master
3.若不想merge远程和本地修改,可以先创建新的分支:
$ git branch [name]
然后push
$ git push -u origin [name]
github | 评论:0
| Trackbacks:0
| 阅读:765
Submitted by admin on 2019, January 8, 4:42 PM
apt-get install gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
PUPPETEER_DOWNLOAD_HOST=https://storage.googleapis.com.cnpmjs.org
win set
npm i puppeteer
cnpm i puppeteer
nodejs | 评论:0
| Trackbacks:0
| 阅读:658
Submitted by admin on 2019, January 7, 9:06 AM
apt-get install gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
nodejs | 评论:0
| Trackbacks:0
| 阅读:630
Submitted by admin on 2018, December 29, 10:13 AM
npm install gulp -g
npm install gulp --save-dev
npm install coffee-script --save-dev
---------------
1.2、官方网址:http://npm.taobao.org;
1.3安装:命令提示符执行npm install cnpm -g --registry=https://registry.npm.taobao.org; 注意:安装完后最好查看其版本号 cnpm -v或关闭命令提示符重新打开,安装完直接使用有可能会出现错误;
注:cnpm跟npm用法完全一致,只是在执行命令时将npm改为cnpm(以下操作将以cnpm 代替npm)。
2、全局安装gulp
安装方式:cnpm install gulp -g
----------------------
文件写权限问题,查看资料发现,可能需要增加--unsafe-perm,即
如:sudo npm install --unsafe-perm -g polymer-cli
nodejs | 评论:0
| Trackbacks:0
| 阅读:564
Submitted by admin on 2018, December 28, 11:17 PM
1
首先清除根目录下的.node-gyp
卸载node-gyp模块
npm uninstall node-gyp -g
2
安装环境
npm i -g windows-build-tools
重新安装node-gyp
npm install -g node-gyp
3
设置python版本
npm config set python python
4
安装.net 2.0
5
安装vs 201* c++ 环境
6安装microtime运行时
npm i microtime --save-dev
------------------------
npm uninstall node-gyp -g
npm i -g windows-build-tools
npm install -g node-gyp
npm i -g node-inspector
npm cache clean --force
npm i -g pm2
-------
3.进入下面这个文件夹清除cache
路径:C:UsersPCAppDataRoamingnpm-cache
执行:
npm cache clean --force
----------
借助于pm2-windows-service 可以把pm2以windows服务运行。已服务运行的好处就是,即时用户注销也,pm2也会在后台运行
npm i pm2 -g
npm i pm2-windows-service -g
安装服务:pm2-service-install -n myservice (安装后在windows服务中多了一个myservice的服务)##卸载pm2-service-uninstall
设置环境变量:PM2_SERVICE_SCRIPTS = PM2的配置文件
windows服务中重新启动myservice服务
nodejs | 评论:0
| Trackbacks:0
| 阅读:619
Submitted by admin on 2018, December 3, 11:50 PM
我们用vim关闭之后重新打开文件,会从第一行重新开始,但我们有时需要记忆上次编辑的内容
在vim /etc/vim/vimrc 有这一行被注释掉了
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
ubuntu | 评论:0
| Trackbacks:0
| 阅读:635
Submitted by admin on 2018, December 3, 3:27 PM
2、事件机制
node.js 使用事件驱动模型,当web server接收到请求,就把它关闭然后进行处理,然后去服务下一个web请求。当这个请求完成,它被放回处理队列,当到达队列开头,这个结果被返回给用户。在事件驱动模型中,会生成一个主循环来监听事件,当检测到事件时触发回调函数。
https://blog.csdn.net/zhouziyu2011/article/details/68928175
------------------
Node.js 异步编程的直接体现就是回调。
异步编程依托于回调来实现,但不能说使用了回调后程序就异步化了。
https://www.cnblogs.com/yitongjiangshan/p/5581316.html
-----------------------
A "callback" is any function that is called by another function which takes the first function as a parameter. (在一个函数中调用另外一个函数就是callback)
https://blog.csdn.net/rockage/article/details/79513450
-----------------
每个中间件的参数都是req,res,next. req中有一些请求的必要信息,以及有可能有上一个中间件的执行结果,res表示要返回给客户端的内容,next表示调用下一个中间件,只能在非结尾的中间件中使用
https://blog.csdn.net/u014595019/article/details/51019680
-----------------
七天学会NodeJS
https://lvtao.net/content/book/node.js.htm#1.6
nodejs | 评论:0
| Trackbacks:0
| 阅读:697
Submitted by admin on 2018, November 7, 4:52 PM
wget https://codeload.github.com/rvoicilas/inotify-tools/tar.gz/3.20.1
mv 3.20.1 inotify-tools-3.20.1.tar.gz
tar zxvf inotify-tools-3.20.1.tar.gz
cd inotify-tools-3.20.1
./autogen.sh
./configure
make
make install
#!/bin/bash
DIR=$1
inotifywait -mrq -e close_write $DIR | while read FILE
do
/bin/kw.sh
done
---------------
#!/bin/bash
DIR=$1
inotifywait -m -e close_write $DIR --format "%w%f" | while read FILE
do
cat ${FILE} | mail -s "Alarm: $FILE" admin@gmail.com
done
ubuntu | 评论:0
| Trackbacks:0
| 阅读:593