摘要:
一、版本管理工具的介绍: 1、备份文件; 2、记录历史; 3、多端共享; 4、团队协作; 二、版本管理工具的发展史; 1、cvs: 集中式 1985; 2、svn: 集中式 2000; 3、git: 分布式 2005 linux之父开发; 三、集中式和分布式版本控制的区别: 1、集中式:版本库是集中 阅读全文
摘要:
.fix:after{ display:block; content:"clear"; height:0; clear:both; overflow:hidden; visibility:hidden; } 阅读全文
摘要:
{ "window.zoomLevel": 0, "files.autoSave": "off", "editor.fontSize": 14, "editor.formatOnPaste": false, "editor.renderWhitespace": "all", "editor.renderControlCharacters": true, "editor.detectIndenta... 阅读全文
摘要:
为了便于管理,Git要求每个远程主机都必须指定一个主机名 git remote命令就用于管理主机名。 不带选项的时候,git remote命令列出所有远程主机 使用-v选项,可以参看远程主机的网址 上面命令表示,当前只有一台远程主机,叫做origin,以及它的网址 克隆版本库的时候,所使用的远程主机 阅读全文
摘要:
一、git clone git clone支持多种协议,除了HTTP(s)以外,还支持SSH、Git、本地文件协议 SSH协议还有另一种写法 阅读全文
摘要:
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... 阅读全文
摘要:
1、添加 --disable-web-security --user-data-dir=D:\tmp 2、在D的根目录新建tmp文件夹 阅读全文
摘要:
用该属性获取页面 URL 地址: window.location 对象所包含的属性 如图就是取出url中的参数。 js 脚本捕获页面 GET 方式请求的参数?其实直接使用 window.location.search 获得,然后通过 split 方法结合循环遍历自由组织数据格式。 大概处理如下: 阅读全文