1. 23 7月, 2005 15 次提交
  2. 19 7月, 2005 5 次提交
  3. 17 7月, 2005 12 次提交
  4. 16 7月, 2005 8 次提交
    • P
      Add "Files" and "Pickaxe" to the find menu. · b74fd579
      Paul Mackerras 提交于
      "Files" matches the find string against each of the files modified
      by each commit, and can do exact, case-ignoring or regexp matching.
      
      "Pickaxe" uses git-diff-tree -S'string' and can only do exact
      matching.  I called it "pickaxe" rather than "find within patch"
      since it only finds commits where the string is present in the child
      but not the parents or vice versa, and "pickaxe" is what the author
      of that feature calls it.
      b74fd579
    • L
      Be slightly smarter about git-daemon client shutdown · 02d57da4
      Linus Torvalds 提交于
      Shut down connections that haven't even identified themselves as git
      clients first.  That should get rid of people who just connect to the
      port and wait for something to happen.
      02d57da4
    • J
      [PATCH] Documentation: update recommended workflow when working with others. · a232a132
      Junio C Hamano 提交于
      Clarify that the hierarchy implied by the recommended workflow
      is only informal.
      
      Refer readers to nice illustration by Randy Dunlap.
      
      Separate out the step to "push" to own public repository in the
      workflow.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      a232a132
    • J
      [PATCH] Documentation: adjust cvsimport command line. · 2c38fe4c
      Junio C Hamano 提交于
      The cvsimport example in the cvs migration document was still
      using the old syntax for target repository after new and
      improved cvsimport-script was merged.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      2c38fe4c
    • L
      git-daemon: actually remember the children we have outstanding · 66e631de
      Linus Torvalds 提交于
      This is using a lockless approach that allows us to handle children
      dying without having to block SIGCHLD.
      
      Right now our "solution" to too many kids is pretty damn rough, but it
      at least shows what you can do.
      66e631de
    • L
      git-daemon: keep track of children · eaa94919
      Linus Torvalds 提交于
      We don't want them as zombies, and eventually we'll want to limit their
      number. Right now we just count them.
      eaa94919
    • L
      Ahh, the heady days of 0.99 patchfiles · 78d9d414
      Linus Torvalds 提交于
      Now, not all projects can be as refined as Linux.  Before the final 1.0
      release, we went through fifteen 0.99 patchfiles, and pl14 alone went
      through subreleases 'a' through 'z'. Now _that_ is a release process.
      
      Not to mention the odd-ball releases, like 0.96c+
      
      Sadly, in this day and age of RPM's etc, we have silly limitations, and
      I cannot call this release '0.99pl5a or some such awe-inspiring name
      just because "rpmbuild" is such a party pooper.  So it's just 0.99.1.
      
      Oh well.  Aspiring to such greatness as the Linux release numbering is
      hubris anyway.  You can attain such perfection only once in your life.
      78d9d414
    • L
      Fix up "make doc" · 71931c19
      Linus Torvalds 提交于
      Fix 'git-var.txt' and use "-b xhtml11" instead of "-b css-embedded" to
      make asciidoc 7.0.1 happy.
      71931c19