
git
weixin_41826907
越努力,越幸运
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git 将本地已有项目上传至github
git init把这个文件夹变成Git可管理的仓库 指定仓库地址 git remote add origin ‘xxx.git’ 提交注释 git add * git commit -m ‘init’ 此时会提示输入用户名和密码 git push origin master...原创 2018-05-10 11:46:03 · 204 阅读 · 0 评论 -
npm设置淘宝镜像
一、通过config命令 npm config set registry https://registry.npm.taobao.org 这种方式有点问题,通过config命令方式会导致在npm install时报一个配置文件错误,看不懂,最后重装了使用直接修改配置文件的方式 二、通过编辑(C:\Program Files\nodejs\node_modules\npm)npmrc 文...原创 2018-05-20 00:30:12 · 1874 阅读 · 0 评论 -
vscode设置同步
1、Settings Sync是vscode中同步设置和安装插件的小工具,在扩展商店中搜索并安装它 2、登陆Github>Your profile> settings>Developer settings>personal access tokens>generate new token,输入名称,勾选Gist,提交 3、保存Github Access Tok...原创 2018-07-23 16:59:46 · 2483 阅读 · 0 评论