摘要:
JSON.stringify(result) 阅读全文
posted @ 2013-11-29 21:12 钟悍 阅读(156) 评论(0) 推荐(0) 编辑
摘要:
常用命令:从本地git仓库中导出工作文件 git checkout查看历史 git log filenamegit log -p #查看每个阶段的具体差异git log --stat --summary #查看改变的概述查看某次提交的文件内容git show commit-name:filename #commit-name来源于git log 的每个条目的第一行增加新文件 git add newfile #执行完此操作后,newfile处于待提交状态,执行git rm --cached newfile,退回到工作目录git commit newfile提交更改 git commit file 阅读全文
posted @ 2013-11-29 11:18 钟悍 阅读(1795) 评论(0) 推荐(0) 编辑 |
||