git常见命令整理 【基本概念】 A) git本地由三个部分组成:工作区 和 暂存区 和 本地库。 B) .git目录才是仓库的灵魂,.git目录里面包括 暂存区 和 本地库,.git目录外的地方是工作区。 C) git中包含4类对象 (commit 提交对象, tree 目录, blob 文件, tag 标记) 【git模型】 工作区 = working directory 暂存区 = snapshot/stage/index 本地库 = local repo 【.git目录】 HEAD 指向当前分支 config 项目配置文件 descripti...
by compare2000 - Linux文档专区 - 2014-10-24 12:01:47 阅读(7873) 回复(75)
我想写一个 可以在 android source code 目录底下所有有 .git 的目录下 用 git status 或是 repo status 检查哪些文件有modify, 再把这些有modify的文件全部copy 到 a 目录 请问这样大概要怎么写? 谢谢
git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6 http://git.or.cz/gitwiki/gitDocumentation http://linux.yyz.us/git-howto.html http://www.bitsun.com/documents/gittutorcn.htm 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/52215/showart_1385959.html
linux内核代码可以通过git来管理。在linux下面安装git包,git的图形界面是qgit. windows下面也有对应的版本 qgit: sourceforge.net/projects/qgit git: http://code.google.com/p/msysgit/ 使用git下载内核代码: git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/93140/showart_1981478.html
功能说明:文字模式下的文件管理员。 语 法:git 补充说明:git是用来管理文件的程序,它十分类似DOS下的Norton Commander,具有互动式操作界面。它的操作方法和Norton Commander几乎一样,略诉如下: F1 :执行info指令,查询指令相关信息,会要求您输入欲查询的名称。 F2 :执行cat指令,列出文件内容。 F3 :执行gitview指令,观看文件内容。 F4 :执行vi指令,编辑文件内容。 F5 :执行cp指令,复制文件或目录,会要求您输入...
用 <...
公司最近上了siebel系统,我负责和二次开发的人沟通,并写下安装配置过程。
文件:
siebel linux安装.zip
大小:
3921KB
下载:
下载
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/49765/showart_2105646.html
有哪位大侠有SGD安装的文档不,小妹没安装过,想找下手册或安装文档看看。
多谢,多谢!!!
[ 本帖最后由 conniewu 于 2009-9-10 20:00 编辑 ]
1.load the linux.iso in the vritual cdrom.
2.mount the cdrom (mount /dev/cdrom)
3.unpacking the pakage
tar -zxvf VMwareTools-xx.tar.gz -C /tmp #here we use the paramenter -C specify upacking directory.
4.enter the upacking directory
cd /tmp
cd vmware/vmware-toos-distrib
5.complier the file
./vmware-install.pl
6.at this step ,the programing will install the vmware tools ,all the directory a...
安装rrdtool,过程中,老提示找不到pkgconfig 文件,它默认路径是/usr/lib/pkgconfig,而fontconfig、freetype默认安装路径是/usr/local/lib/pkgconfig,所以加一个pkgconfig的路径,
安装就非常方便了,下面是安装过程:
wget wget
http://www.scriptroute.org/source/cgilib-0.5.tar.gz
tar -zxvf cgilib-0.5.tar.gz
cd cgilib-0.5
make
cp libcgi.a /usr/local/lib
cp cgi.h /usr/include
download:http://oss.oetiker.ch/...
install
1.作用
install命令的作用是安装或升级软件或备份数据,它的使用权限是所有用户。
2.格式
(1)install [选项]... 来源 目的地
(2)install [选项]... 来源... 目录
(3)install -d [选项]... 目录...
在前两种格式中,会将复制至或将多个文件复制至已存在的,同时设定
权限模式及所有者/所属组。在第三种格式中,会创建所有指定的目录及它们的主目录。长选项必须用的参数在使用短选项时也是必须的。
3.主要参数...