1、代码中 某文件后面有 “M” 标记,表示该文件已被修改,需要 commit.(右键该文件 -> source control -> commitselected file...)2、代码中 某文件后面有 “A” 标记,表示该文件是新添加的,已受SVN管理,需要 commit.(右键该文件 -> ...
分类:
其他好文 时间:
2014-07-19 19:08:02
阅读次数:
245
这里会把自己实际工作当中用到的git操作记录下来,供自己学习:①新建分支:在新版本要开发时,会基于最新版本新建一个分支,创建步骤如下:新建本地分支【注意:这时只存在于本地,远程仓库还没有生成】:然后切换到新建的本地分支:【说明】:以上两部操作可以合成一个命令:git checkout -b deve...
分类:
其他好文 时间:
2014-07-19 17:03:39
阅读次数:
181
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
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和Hibernate整合后,通过Hibernate API进行数据库操作时发现每次都要opensession,close,beginTransaction,commit,这些都是重复的工作,我们可以把事务管理部分交给spring框架完成。配置事务(xml方式)使用spring管理事务后在...
分类:
编程语言 时间:
2014-07-19 09:32:52
阅读次数:
32137
今天有一开发兄弟找我,说出现一奇怪现象,在存储过程中赋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
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
刚刚加入公司正好赶上svn向git过渡作为一个菜鸟只能接受老大的指导,就在这记录下我的学习路程。首先公司的IT部署了git服务器,我们项目组添加了ios的分支,我们的日常代码都是提交在这个分支,进入首页相关分支在右上选择http后,复制相关地址,通过mac的终端输入 git clone 相关地址,将...
分类:
移动开发 时间:
2014-07-18 18:21:21
阅读次数:
289
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的使用。...
分类:
其他好文 时间:
2014-07-18 11:13:34
阅读次数:
313