git
追赶者
好好学习,天天向上。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git学习笔记
git init 创建一个版本库 git add xxx 添加文件修改到暂存区 git commit -m xxx 把暂存区的修改提交到分支 git checkout -b xxx 创建并切换到 xxx分支 git checkout xxx 切换到xxx分支 git checkout – readme.txt 一种是readme.txt自修改后还没有被放到暂存区,现在,原创 2016-02-05 16:06:17 · 309 阅读 · 0 评论 -
nodejs学习笔记
module.exports 可以赋值任何形式 module.exports = {hello:hello} module.exports.hello = hello module.exports = function(){} exports 只能赋值键值 exports只能以.的形式来赋值 exports.hello = hello 注:因为默认情况下module.ex原创 2016-02-05 16:07:33 · 523 阅读 · 0 评论
分享