在管理Git项目上,很多时候都是直接使用https url克隆到本地,当然也有有些人使用SSH url克隆到本地。这两种方式的主要区别在于:使用https url克隆对初学者来说会比较方便,复制https url然后到git Bash里面直接用clone命令克隆到本地就好了,但是每次fetch和push代码都需要输入账号和密码,这也是https方式的麻烦之处。而使用SSH url克隆却需要在克隆之前...
分类:
Web程序 时间:
2015-02-12 16:14:14
阅读次数:
115
首先从远端版本库clone下来一个全新的库:git clone username@xxx:/xxx/xxx.git此时clone下来的,只是master分支,没有其他分支。查看分支:git branch #查看本地分支git branch -r #查看远端分支git branch -a #查看...
分类:
其他好文 时间:
2015-02-12 12:23:10
阅读次数:
120
http://www.cnblogs.com/cspku/articles/Git_cmds.html git init git clone git add xxx git commit git push...
分类:
其他好文 时间:
2015-02-11 16:53:33
阅读次数:
122
1.从当前目录初始化git init2.对文件进行跟踪 或 将已跟踪的文件放到暂缓区 或 把有冲突的文件标记为已解决状态git add 3.从现有仓库克隆git clone 地址(支持git协议,http协议,SSH协议)4.检查当前文件状态git status5.查看已暂存和未暂存的更新git d...
分类:
其他好文 时间:
2015-02-10 14:45:12
阅读次数:
225
环境:基于Windows需要准备以下工作:安装Ruby安装DevKit安装Python安装Git - msysgit以上软件如果是初次安装,可能还是有一些麻烦的,特别是版本的选择。因为之前搭建过jekyll,也要求安装以上软件,在此就不介绍了,可参考Windows上安装Jekyll安装Octopress一:clone Octopress进入任意盘(比如D盘),打开Git Bash 将Octopre...
分类:
其他好文 时间:
2015-02-09 21:41:30
阅读次数:
407
GPUImage介绍::::https://github.com/BradLarson/GPUImage1.首先从github上把GPUImage clone下来2.新建一个项目GG~3.将GPUImage的framework文件夹拖到GG下面的一个子文件夹中4.将GPUImage.xcodepro...
分类:
其他好文 时间:
2015-02-09 18:02:08
阅读次数:
202
我写的CSDN博客客户端
从google下载volley源码
git clone
https://android.googlesource.com/platform/frameworks/volley
配置gradle
下载地址:
http://gradle.org/downloads
配置环境变量:
sudo gedit /etc/prof...
分类:
其他好文 时间:
2015-02-09 11:02:28
阅读次数:
202
每次git clone 和push 都要输入用户名和密码。虽然安全,但在本机上每次都输有些麻烦,如何记住用户名和密码呢?在网上看了各种方法,太杂,很多可能环境不一样,一直行不通。最后找到一种有效的方法,很简单。记录下来!当你配置好git后,在C:\Documents and Settings\Adm...
分类:
其他好文 时间:
2015-02-08 23:07:55
阅读次数:
185
MMMaterialDesignSpinnerUsageTo run the example project, clone the repo, and runpod installfrom the Example directory first.首先,通过pod安装,然后运行项目。// Initia...
分类:
其他好文 时间:
2015-02-07 22:54:35
阅读次数:
161
Clone GraphClone an undirected graph. Each node in the graph contains alabeland a list of itsneighbors.OJ's undirected graph serialization:Nodes are l...
分类:
其他好文 时间:
2015-02-05 18:16:25
阅读次数:
220