上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
摘要: 一、版本管理工具的介绍: 1、备份文件; 2、记录历史; 3、多端共享; 4、团队协作; 二、版本管理工具的发展史; 1、cvs: 集中式 1985; 2、svn: 集中式 2000; 3、git: 分布式 2005 linux之父开发; 三、集中式和分布式版本控制的区别: 1、集中式:版本库是集中 阅读全文
posted @ 2017-10-10 11:58 年少的你如此美丽 阅读(292) 评论(0) 推荐(0) 编辑
摘要: .fix:after{ display:block; content:"clear"; height:0; clear:both; overflow:hidden; visibility:hidden; } 阅读全文
posted @ 2017-10-07 14:07 年少的你如此美丽 阅读(102) 评论(0) 推荐(0) 编辑
摘要: { "window.zoomLevel": 0, "files.autoSave": "off", "editor.fontSize": 14, "editor.formatOnPaste": false, "editor.renderWhitespace": "all", "editor.renderControlCharacters": true, "editor.detectIndenta... 阅读全文
posted @ 2017-09-28 10:01 年少的你如此美丽 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 为了便于管理,Git要求每个远程主机都必须指定一个主机名 git remote命令就用于管理主机名。 不带选项的时候,git remote命令列出所有远程主机 使用-v选项,可以参看远程主机的网址 上面命令表示,当前只有一台远程主机,叫做origin,以及它的网址 克隆版本库的时候,所使用的远程主机 阅读全文
posted @ 2017-09-16 17:19 年少的你如此美丽 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 一、git clone git clone支持多种协议,除了HTTP(s)以外,还支持SSH、Git、本地文件协议 SSH协议还有另一种写法 阅读全文
posted @ 2017-09-16 13:39 年少的你如此美丽 阅读(146) 评论(0) 推荐(0) 编辑
摘要: git init git remote add origin http://****** git fetch origin population-forecast git checkout -b population-forecast origin/population-forecast git status git add . git commit -m 'Init my f... 阅读全文
posted @ 2017-09-13 16:03 年少的你如此美丽 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 1、添加 --disable-web-security --user-data-dir=D:\tmp 2、在D的根目录新建tmp文件夹 阅读全文
posted @ 2017-09-08 14:36 年少的你如此美丽 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 用该属性获取页面 URL 地址: window.location 对象所包含的属性 如图就是取出url中的参数。 js 脚本捕获页面 GET 方式请求的参数?其实直接使用 window.location.search 获得,然后通过 split 方法结合循环遍历自由组织数据格式。 大概处理如下: 阅读全文
posted @ 2017-08-31 00:05 年少的你如此美丽 阅读(423) 评论(0) 推荐(0) 编辑
摘要: -f, --force 忽略不存在的文件,从不给出提示。 -i, --interactive 进行交互式删除 -r, -R, --recursive 指示rm将参数中列出的全部目录和子目录均递归地删除。 -v, --verbose 详细显示进行的步骤 --help 显示此帮助信息并退出 --vers 阅读全文
posted @ 2017-08-16 22:17 年少的你如此美丽 阅读(2461) 评论(0) 推荐(0) 编辑
摘要: windows下模拟linux命令的工具 xshell 阅读全文
posted @ 2017-08-16 22:04 年少的你如此美丽 阅读(293) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页