Git视图文件忽略共享文件忽略git忽略语法(git help ignore)本地仓库忽略提交add+commit查看文件状态git status日志logPart1 查看日志信息Part2 修改最后一次commit的信息(Amend previous commit按钮)Part3 日志搜索Part...
分类:
其他好文 时间:
2014-07-16 18:26:50
阅读次数:
496
Linux下chkconfig命令详解chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkcon...
分类:
其他好文 时间:
2014-07-16 18:04:22
阅读次数:
327
https://wiki.debian.org/iwlwifiDebian 7 "Wheezy"Add a "non-free" component to /etc/apt/sources.list, for example: # Debian 7 "Wheezy"deb http://http.d...
分类:
其他好文 时间:
2014-07-15 00:53:21
阅读次数:
239
备份数据库#mysqldump 数据库名 >数据库备份名#mysqldump -A -u用户名 -p密码 数据库名>数据库备份名#mysqldump -d -A --add-drop-table -uroot -p >xxx.sql1.导出结构不导出数据mysqldump -d 数据库名 -uroo...
分类:
数据库 时间:
2014-07-15 00:48:13
阅读次数:
333
java.lang.OutOfMemoryError: PermGen space解决办法:Eclipse--》window--》Tomcat --》JVM setting --》Append To JVM Parameters --》add 弹出框填写:-Xmx256M -Xms256M -XX:...
分类:
编程语言 时间:
2014-07-14 23:41:54
阅读次数:
322
一、使某行某列单元格disabled:1.UniStringGrid->Options->goEditing=true2.UniStringGrid->ExtEvents->add eventbeforeeditfunction beforeedit(editor, context, eOpts) ...
分类:
数据库 时间:
2014-07-14 22:20:05
阅读次数:
741
How do I insert a space to a NSString.I need to add a space at index 5 into:NString * dir = @"abcdefghijklmno";To get this result:abcde fghijklmnowith...
分类:
其他好文 时间:
2014-07-14 21:12:21
阅读次数:
175
Doc ID 428681.1Applies to: Oracle Database - Enterprise Edition - Version 10.2.0.1 to 11.2.0.1.0 [Release 10.2 to 11.2]Information in this document applies to any platform.GoalThe goal of this note i...
分类:
其他好文 时间:
2014-07-14 18:12:01
阅读次数:
343
[root@Server3Learn]#catuseradd-final.sh
#!/bin/bash
#
DEBUG=0
ADD=0
DEL=0
help(){
echo"Usage:$(basename$0)-v|--verbose|--adduser1,user2,...|--deluser1,user2,...|-h|--help"
}
while[$#-ne0]
do
case$1in
-h|--help)
help
exit0
;;
-v|--verbose)
DEBUG=1
shi..
分类:
其他好文 时间:
2014-07-14 16:25:52
阅读次数:
230
网上查找Linux硬盘驱动的话能找到好多相关信息,但是具体代码都没有。经过一番努力,实现了硬盘读写的代码,特来分享一下。可能因为硬盘控制器更新的原因,一些新式的笔记本上使用这些代码会失败。不过在VmWare上是可以用的。这个项目的git地址:git://code.csdn.net/hanjianqiao/dingus.git。在commit为“Add harddisk”的版本直接编译出的镜像便是下...
分类:
其他好文 时间:
2014-07-14 12:50:21
阅读次数:
254