码迷,mamicode.com
首页 >  
搜索关键字:gi    ( 1151个结果
git命令
安装git后,进行配置 全局配置$ git config --global user.name "Your Name"$ git config --global user.email "email@example.com" 会在 系统盘:\windows\user\用户目录 下创建 .gi...
分类:其他好文   时间:2015-06-29 20:04:04    阅读次数:99
git学习(3)
继续对readme.txt做以下修改:Git is a distributed version control system.Git is free software distributed under the GPL.然后使用git add和git commit提交到仓库。文件经过很多次修改,gi...
分类:其他好文   时间:2015-06-28 11:05:07    阅读次数:107
git相关的简单命令
初次使用建议看这个ppt:http://www.bootcss.com/p/git-guide/ 从现有仓库克隆 这需要用到 git clone 命令。如果你熟悉其他的 VCS 比如 Subversion,你可能已经注意到这里使用的是 clone 而不是 checkout。这是个非常重要的差别,Gi...
分类:其他好文   时间:2015-06-26 14:48:21    阅读次数:129
[转]Git教程【译】
[转]Git教程【译】http://www.cnblogs.com/zhangjing230/archive/2012/05/09/2489745.html原文出处:http://www.vogella.com/articles/Git/article.html翻译说明:个人出于兴趣爱好翻译这篇Gi...
分类:其他好文   时间:2015-06-25 06:41:39    阅读次数:207
CSU1660: K-Cycle
Description A simple cycle is a closed simple path, with no other repeated vertices or edges other than the starting and ending vertices. The length of a cycle is the number of vertices on it. Gi...
分类:其他好文   时间:2015-06-22 22:21:45    阅读次数:178
Mac中Git的简单实用(6) --- 分支管理策略
今天我来介绍下Git,Git是一款免费、开源的分布式版本控制系统。 我们在上一个学习了Git分支冲突管理。 这一章,我们要学习Git的Fast-forward模式、保存恢复现场 、测试的feature分支。 Mac中Git的简单实用(1) — Git基本命令(1) Mac中Git的简单实用(2) — Git基本命令(2) Mac中Git的简单实用(3) — Github远程仓库 Mac中Gi...
分类:系统相关   时间:2015-06-19 21:40:48    阅读次数:289
JavaScript查找Html字符串中的img标签替换src属性的内容
JavaScript示例代码如下:  var newContent= content.replace(/]*src=['"]([^'"]+)[^>]*>/gi,function(match,capture){   //capture,返回每个匹配的字符串                             var newStr='';...
分类:编程语言   时间:2015-06-19 16:51:43    阅读次数:361
我也谈javascript正则匹配
一、javascript 正则全局匹配 g 慎用test()方法来个例子:var a = /^[a-z]+/gi;a.test('bb123'); //truea.lastIndex ; // 0a.test('bb123') // falsea.lastIndex ; // 2a.test...
分类:编程语言   时间:2015-06-16 10:42:57    阅读次数:135
LeetCode之“动态规划”:Unique Binary Search Trees && Unique Binary Search Trees II
1.Unique Binary Search Trees 题目链接 题目要求: Givenn, how many structurally uniqueBST's(binary search trees) that store values 1...n? For example, Gi...
分类:其他好文   时间:2015-06-13 22:48:15    阅读次数:141
Github在Windows下使用流程介绍
一、版本管理工具介绍顾名思义,版本管理,用户提供完备的版本控制,用于存储、追踪目录(文件夹)和文件的修改历史,是软件开发者的必备工具,是支持项目团队的配置管理活动,追踪多个版本的开发和维护活动,及时发布软件。用于项目文件备份记录文件操作历史跨终端,不分时间段,多地点共享团队协作二、下载和安装下载Gi...
分类:Windows程序   时间:2015-06-13 14:14:41    阅读次数:221
1151条   上一页 1 ... 92 93 94 95 96 ... 116 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!