1. 27 8月, 2009 11 次提交
  2. 26 8月, 2009 6 次提交
  3. 24 8月, 2009 4 次提交
    • J
      Merge branch 'jc/verify-pack-stat' · 2e1176d5
      Junio C Hamano 提交于
      * jc/verify-pack-stat:
        verify-pack --stat-only: show histogram without verifying
      2e1176d5
    • J
      Merge branch 'mr/gitweb-xz' · dad1a454
      Junio C Hamano 提交于
      * mr/gitweb-xz:
        gitweb: add support for XZ compressed snapshots
        gitweb: update INSTALL regarding specific snapshot settings
        gitweb: support to globally disable a snapshot format
      dad1a454
    • J
      Merge branch 'ld/p4' · b5a8dc7e
      Junio C Hamano 提交于
      * ld/p4:
        git-p4: stream from perforce to speed up clones
      b5a8dc7e
    • G
      gitweb: pull ref markes pull out of subject <a> element · 01b89f0c
      Giuseppe Bilotta 提交于
      Since 4afbaeff (gitweb: ref markers link to named shortlogs, 2008-09-02),
      ref markers that accompany the subject in views such as shortlog and
      history point to something different from the subject itself. Therefore,
      they should not be included in the same <a> element.
      
      Benefits of the change are:
      
       * better compliance to the XHTML standards, that forbid links within
         links even though the restriction cannot be imposed via DTD; this also
         benefits visualization in some older browsers;
      
       * when hovering the subject, only the subject itself is underlined; when
         hovering the ref markers, only the text in the hovered ref marker is
         underlined; previously, hovering any written part of the subject column
         led to complete underlying of everything at the same time, with
         unpleasing effects.
      Signed-off-by: NGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
      Acked-by: NJakub Narebski <jnareb@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      01b89f0c
  4. 22 8月, 2009 13 次提交
  5. 20 8月, 2009 1 次提交
  6. 19 8月, 2009 5 次提交
    • J
      Merge branch 'rc/maint-http-fix' · 9ebfda10
      Junio C Hamano 提交于
      * rc/maint-http-fix:
        http.c: don't assume that urls don't end with slash
      9ebfda10
    • J
      Merge branch 'tr/maint-1.6.3-add-p-modeonly-fix' · 09ba7b2d
      Junio C Hamano 提交于
      * tr/maint-1.6.3-add-p-modeonly-fix:
        add -p: do not attempt to coalesce mode changes
        git add -p: demonstrate failure when staging both mode and hunk
      09ba7b2d
    • A
      graph API: use a new color when starting a brand new column · 91e50b2c
      Adam Simpkins 提交于
      Use a new color for commits that don't have any previously printed
      children.  The following command demonstrates the changes:
      
        git log --graph --pretty=tformat:'%h %s%n' -7 481c7a6d 18b07930
      
      Now the two independent lines of development are displayed with
      different colors, instead of both using the same color.
      Signed-off-by: NAdam Simpkins <simpkins@facebook.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      91e50b2c
    • K
      git-svn: Use GIT_SSH setting if SVN_SSH is not set · f3a87d92
      Karthik R 提交于
      If SVN_SSH is defined, it will be used. Else value in
      GIT_SSH is copied to SVN_SSH & then, only on Windows,
      the \s are escaped.
      
      On Windows, the shell-variables must be set as follows
          GIT_SSH="C:\Program Files\PuTTY\plink.exe"
          SVN_SSH="C:\\Program Files\\PuTTY\\plink.exe"
      
      See http://code.google.com/p/msysgit/issues/detail?id=305
      
      [ew: fixed indentation to use tabs]
      Acked-by: NEric Wong <normalperson@yhbt.net>
      Signed-off-by: NKarthik Rajagopalan <karthikr@fastmail.fm>
      f3a87d92
    • E
      svn: assume URLs from the command-line are URI-encoded · 5268f9ed
      Eric Wong 提交于
      And then unescape them when writing to $GIT_CONFIG.
      
      SVN has different rules for repository URLs (usually the root)
      and for paths within that repository (below the HTTP layer).
      Thus, for the request URI path at the HTTP level, the URI needs
      to be encoded.  However, in the body of the HTTP request (the
      with underlying SVN XML protocol), those paths should not be
      URI-encoded[1].  For non-HTTP(S) requests, SVN appears to be
      more flexible and will except weird characters in the URL as
      well as URI-encoded ones.
      
      Since users are used to using URLs being entirely URI-encoded,
      git svn will now attempt to unescape the path portion of URLs
      while leaving the actual repository URL untouched.
      
      This change will be reflected in newly-created $GIT_CONFIG files
      only.  This allows users to switch between svn(+ssh)://, file://
      and http(s):// urls without changing the fetch/branches/tags
      config keys.  This won't affect existing imports at all (since
      things didn't work before this commit anyways), and will allow
      users to force escaping into repository paths that look like
      they're escaped (but are not).
      
      Thanks to Mike Smullin for the original bug report and Björn
      Steinbrink for summarizing it into testable cases for me.
      
      [1] Except when committing copies/renames, see
          commit 29633bb9Signed-off-by: NEric Wong <normalperson@yhbt.net>
      5268f9ed