ChinaUnix.net
相关文章推荐:

git1712targz

我想写一个 可以在 android source code 目录底下所有有 .git 的目录下 用 git status 或是 repo status 检查哪些文件有modify, 再把这些有modify的文件全部copy 到 a 目录 请问这样大概要怎么写? 谢谢

by yshihyu - Python - 2012-07-07 17:20:40 阅读(1333) 回复(0)

相关讨论

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

by xiaosuzi - Linux文档专区 - 2008-11-07 11:16:05 阅读(709) 回复(0)

用了很久git了,没出过问题。今天出了。。。 root@root:/home/root/aa# mkdir m root@root:/home/root/aa# git status . # On branch my nothing to commit (working directory clean) 此时对新增文件的git add/git commit 都会失效,貌似git看不到这些变化了?

by chishanmingshen - 内核源码 - 2014-05-16 17:26:19 阅读(1004) 回复(4)

本帖最后由 yshihyu 于 2012-07-05 00:18 编辑 我写一个 script 可以在 android source code 目录底下所有有 .git 的目录下 用 git status 或是 repo status 检查哪些文件有modify, 再把这些有modify的文件全部copy 到 a 目录 请问这样script 大概要怎么写? 谢谢

by yshihyu - Shell - 2012-07-28 00:04:37 阅读(2094) 回复(7)

HowTo: Revert local changes in git http://yelotofu.com/2010/08/howto-revert-local-changes-git/ [quote]If you want to revert changes made to your working copy, do this: git checkout . If you want to revert changes made to the index (i.e., that you have added), do this: git reset If you want to revert a change that you have committed, do this: git revert ... [/quote] git - SVN Crash Course ...

by bxfqing - 移动操作系统 - 2011-08-09 20:56:48 阅读(1557) 回复(0)

今天是“git第一天”,和我“从零开始”吧! 1. 我用命令rpm -qa|grep -i git查看一下我的机器是否安装了git: [rocrocket@wupengchong ~]$ sudo su [root@wupengchong ~]# rpm –qa | grep -i git libcapseo-0.2.0-0.1.20080603gita6ec446.fc9.i386 libcaptury-0.3.0-0.1.20080323gitcca4e3c.fc9.i386 xorg-x11-drv-nouveau-0.0.10-2.20080408git0991281.fc9.i386 xorg-x11-drv-digitaledge-1.1.1-1.fc9.i386 此处grep命令使用-...

by newtelcom - Linux文档专区 - 2010-02-15 15:00:01 阅读(1287) 回复(0)

最近遇到这个东东了。 先观望一阵子,研究一下再说。 因为我一直在用 svn ,还是很习惯的,但是在 svn 里如何删除一个目录成了问题,再看。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/40281/showart_2073297.html

by drunkedcat - Linux文档专区 - 2009-10-19 15:05:34 阅读(831) 回复(0)

中文文档: http://progit.org/book/zh/ 活灵活现使用git: http://phoenixtoday.blogbus.com/logs/33458940.html git和svn比较 http://blog.csdn.net/colorant/archive/2008/10/31/3193820.aspx gitosis使用 http://blog.3gcomet.com/article.asp?id=417 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/67750/showart_2054479.html

by liubingzhq - Linux文档专区 - 2009-09-17 13:51:52 阅读(745) 回复(0)

在 http://www.kernel.org/pub/software/scm/git/ 中下载了git1.6.1,make时不通过,出现/usr/include/openssl/kssl.h:72:18: krb5.h: No such file or directory 等一些文件找不到的错误,解决办法如下: 做几个软链接即可: ln -s /usr/kerberos/include/com_err.h /usr/include/ ln -s /usr/kerberos/include/profile.h /usr/include/ ln -s /usr/kerberos/include/krb5.h /usr/include/ 之后make通过,make install之后在我设...

by yohoro - Linux文档专区 - 2009-07-26 21:41:01 阅读(1018) 回复(0)

by tangke 2009-06-02 [基本仓库]: 拥有 git 仓库的人需要的命令——也就是所有人,因为 git 的每个工作拷贝都是一个仓库。 [个人开发者 (独立工作)]: 任何需要进行 commit 的人都需要的命令,即使是一个人工作的情况。 如果你和其他人一起工作,你还需要列在[个人开发者 (参与者)]小节的命令。 扮演[集成者]角色的人还需要学习这一节中的命令。 [仓库管理]命令是给哪些负责维护 git 仓库的系统管理员的。 基本仓库 所有人都可以...

by fewlife - Linux文档专区 - 2009-07-22 19:10:02 阅读(754) 回复(0)

最近迷上了git 一开始的主要目的是同步kernel的stable tree,但是发现自己越来越喜欢这个东西了。 文件:git魔法.pdf 大小:539KB 下载: 下载 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/47430/showart_1935965.html

by ShadowStar - Linux文档专区 - 2009-05-23 01:37:03 阅读(929) 回复(0)