会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
俺把你来蒙
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2018年1月14日
SSH - git
摘要: 配置git提交所用的用户名 告诉git你的名字,这个名字会出现在你的提交记录中。 git config --global user.name "你的名字" 配置git提交所用的Email Email也会出现在你的提交记录中,请尽量保持此Email和git主机登陆的email一致 git config --global user.email "你的Email" SSH Keys 生成s...
阅读全文
posted @ 2018-01-14 21:35 白日梦想家J
阅读(127)
评论(0)
推荐(0)
编辑
Git 命令
摘要: git init命令把这个目录变成Git可以管理的仓库 创建一个目录 mkdir learngitcd 到该目录 cd learngit 运行git init git add告诉Git,把文件添加到仓库--git add 是吧修改的文件 添加到缓存里git add readme.txtgit commit -m "wrote a readme file"提交修改 -m是添加commit...
阅读全文
posted @ 2018-01-14 20:08 白日梦想家J
阅读(144)
评论(0)
推荐(0)
编辑
bower笔记
摘要: bower笔记 安装bower npm install --save-dev bower 自定义bower下载的代码包的目录 创建文件.bowerrc 输入内容 - 所有包安装在此目录下 { "directory": "src/libraries" } bower初始化包信息 bower init 第三方包安装 命令行安装 安装已经注册的包 参数--save ...
阅读全文
posted @ 2018-01-14 19:54 白日梦想家J
阅读(131)
评论(0)
推荐(0)
编辑