码迷,mamicode.com
首页 >  
搜索关键字:git commit    ( 35560个结果
XCODE 中代码控制标记的含义
1、代码中 某文件后面有 “M” 标记,表示该文件已被修改,需要 commit.(右键该文件 -> source control -> commitselected file...)2、代码中 某文件后面有 “A” 标记,表示该文件是新添加的,已受SVN管理,需要 commit.(右键该文件 -> ...
分类:其他好文   时间:2014-07-19 19:08:02    阅读次数:245
版本控制Git实际开发笔记
这里会把自己实际工作当中用到的git操作记录下来,供自己学习:①新建分支:在新版本要开发时,会基于最新版本新建一个分支,创建步骤如下:新建本地分支【注意:这时只存在于本地,远程仓库还没有生成】:然后切换到新建的本地分支:【说明】:以上两部操作可以合成一个命令:git checkout -b deve...
分类:其他好文   时间:2014-07-19 17:03:39    阅读次数:181
Ubuntu下载编译Linux内核。
1、安装git工具2、到官网下载linux内核https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git,这个地址不是很好用在用下面这个 git clone git://git.kernel.org/pub/scm/linux/ke...
分类:系统相关   时间:2014-07-19 16:18:22    阅读次数:328
How to Install Xcode, Homebrew, Git, RVM, Ruby & Rails on Snow Leopard, Lion, Mountain Lion, and Mavericks
After following many outdated and incomplete instructions for setting up a web development environment on a Mac (back in March 2012), and spending a l...
分类:其他好文   时间:2014-07-19 15:00:41    阅读次数:730
Spring整合hibernate4:事务管理
Spring和Hibernate整合后,通过Hibernate API进行数据库操作时发现每次都要opensession,close,beginTransaction,commit,这些都是重复的工作,我们可以把事务管理部分交给spring框架完成。配置事务(xml方式)使用spring管理事务后在...
分类:编程语言   时间:2014-07-19 09:32:52    阅读次数:32137
oracle 存储过程中使用date 时、分、秒丢失
今天有一开发兄弟找我,说出现一奇怪现象,在存储过程中赋date类型的值,时、分、秒都丢失了,下面来做个试验: SQL> drop table test purge; SQL> create table test     (      fill_date  date     ); SQL> insert into test values(sysdate); SQL> commit; ...
分类:数据库   时间:2014-07-19 08:23:15    阅读次数:269
github空间配额说明
What is my disk quota? GitHub doesn't have any set disk quotas. We try to provide abundant storage for all Git repositories, within reason. Keeping repositories small ensures that our servers a...
分类:其他好文   时间:2014-07-19 02:31:15    阅读次数:334
git在iOS开发中的使用
刚刚加入公司正好赶上svn向git过渡作为一个菜鸟只能接受老大的指导,就在这记录下我的学习路程。首先公司的IT部署了git服务器,我们项目组添加了ios的分支,我们的日常代码都是提交在这个分支,进入首页相关分支在右上选择http后,复制相关地址,通过mac的终端输入 git clone 相关地址,将...
分类:移动开发   时间:2014-07-18 18:21:21    阅读次数:289
Oracle中判断字段是否包含中文
SQL> drop table test purge; SQL> create table test as select * from dba_objects where rownum SQL> update test set object_name='中国' where  rownum SQL> commit; SQL> col object_name format a30 SQL>...
分类:数据库   时间:2014-07-18 14:10:03    阅读次数:618
Git使用操作指南和GitHub
本文记录Git的使用操作,把散落的记忆整理到一起。并介绍GitHub的使用。...
分类:其他好文   时间:2014-07-18 11:13:34    阅读次数:313
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!