Rename git-npm-jupyter.vim to git-npm-jupyter.asm

This commit is contained in:
柠乐菠萝包
2023-02-17 03:03:08 +08:00
committed by GitHub
parent 8ef176f41b
commit 6765d36bf4

54
git-npm-jupyter.asm Normal file
View File

@ -0,0 +1,54 @@
/*# script#*/
### git
'''git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/hoochanlon/private.git //
git push -u origin master
git checkout gh-pages //
git checkout -b gh-pages //
git push origin branch-name //push repo的相关分支
git branch -r -d origin/branch-name //
git push origin :branch-name //
git rm -r --cached mydir //mydir文件夹-n
git fetch --all //
git reset --hard origin/master //HEAD指向master最新版本
git pull //
git fetch ///
git merge //
git remote set-url origin repo.git //
### npm
npm login
npm pulish
npm unpublish pkg --force
[npm增删改](https://segmentfault.com/a/1190000017479985)
### jupyter
* [jupyter安装及目录生成](https://www.cnblogs.com/jayafsmw/p/12286580.html)
* [线Jupyter](https://blog.csdn.net/hxpjava1/article/details/86763331)
pip国内镜像
* http://mirrors.aliyun.com/pypi/simple/
* https://pypi.mirrors.ustc.edu.cn/simple/
* http://pypi.douban.com/simple/
* https://pypi.tuna.tsinghua.edu.cn/simple/
* http://pypi.mirrors.ustc.edu.cn/simple/
example
`pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple`
`pip3 install jupyter -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com`'''