1. 31 3月, 2012 1 次提交
    • J
      t7501: test the right kind of breakage · c65dc351
      Junio C Hamano 提交于
      These tests try to run "git commit" with various "forbidden" combinations
      of options and expect the command to fail, but they do so without having
      any change added to the index.  We wouldn't be able to catch breakages
      that would allow these combinations by mistake with them because the
      command will fail with "nothing to commit" anyway.
      
      Make sure we have something added to the index before running the command.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      c65dc351
  2. 28 1月, 2012 1 次提交
  3. 27 1月, 2012 3 次提交
  4. 24 1月, 2012 1 次提交
  5. 19 1月, 2012 12 次提交
  6. 17 1月, 2012 3 次提交
    • J
      credential-cache: ignore "connection refused" errors · 35a71f14
      Jeff King 提交于
      The credential-cache helper will try to connect to its
      daemon over a unix socket. Originally, a failure to do so
      was silently ignored, and we would either give up (if
      performing a "get" or "erase" operation), or spawn a new
      daemon (for a "store" operation).
      
      But since 8ec6c8d7, we try to report more errors. We detect a
      missing daemon by checking for ENOENT on our connection
      attempt.  If the daemon is missing, we continue as before
      (giving up or spawning a new daemon). For any other error,
      we die and report the problem.
      
      However, checking for ENOENT is not sufficient for a missing
      daemon. We might also get ECONNREFUSED if a dead daemon
      process left a stale socket. This generally shouldn't
      happen, as the daemon cleans up after itself, but the daemon
      may not always be given a chance to do so (e.g., power loss,
      "kill -9").
      
      The resulting state is annoying not just because the helper
      outputs an extra useless message, but because it actually
      blocks the helper from spawning a new daemon to replace the
      stale socket.
      
      Fix it by checking for ECONNREFUSED.
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      35a71f14
    • J
      Merge branch 'jn/maint-gitweb-grep-fix' · b63103e9
      Junio C Hamano 提交于
      * jn/maint-gitweb-grep-fix:
        gitweb: Harden "grep" search against filenames with ':'
        gitweb: Fix file links in "grep" search
      b63103e9
    • N
      diff-index: enable recursive pathspec matching in unpack_trees · 4838237c
      Nguyen Thai Ngoc Duy 提交于
      The pathspec structure has a few bits of data to drive various operation
      modes after we unified the pathspec matching logic in various codepaths.
      For example, max_depth field is there so that "git grep" can limit the
      output for files found in limited depth of tree traversal. Also in order
      to show just the surface level differences in "git diff-tree", recursive
      field stops us from descending into deeper level of the tree structure
      when it is set to false, and this also affects pathspec matching when
      we have wildcards in the pathspec.
      
      The diff-index has always wanted the recursive behaviour, and wanted to
      match pathspecs without any depth limit. But we forgot to do so when we
      updated tree_entry_interesting() logic to unify the pathspec matching
      logic.
      Signed-off-by: NNguyễn Thái Ngọc Duy <pclouds@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      4838237c
  7. 15 1月, 2012 1 次提交
  8. 14 1月, 2012 2 次提交
  9. 13 1月, 2012 13 次提交
    • J
      Git 1.7.9-rc1 · 6db5c6e4
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      6db5c6e4
    • J
      Merge branch 'jc/request-pull-show-head-4' · 478c4465
      Junio C Hamano 提交于
      * jc/request-pull-show-head-4:
        request-pull: use the real fork point when preparing the message
      478c4465
    • J
      Merge branch 'tr/maint-mailinfo' · b51ffa80
      Junio C Hamano 提交于
      * tr/maint-mailinfo:
        mailinfo documentation: accurately describe non -k case
      b51ffa80
    • J
      Merge branch 'ss/maint-msys-cvsexportcommit' · 96e33609
      Junio C Hamano 提交于
      * ss/maint-msys-cvsexportcommit:
        git-cvsexportcommit: Fix calling Perl's rel2abs() on MSYS
        t9200: On MSYS, do not pass Windows-style paths to CVS
      96e33609
    • J
      Merge branch 'jk/maint-upload-archive' · bdb8cb52
      Junio C Hamano 提交于
      * jk/maint-upload-archive:
        archive: re-allow HEAD:Documentation on a remote invocation
      bdb8cb52
    • J
      Merge branch 'maint' · c4a01a3c
      Junio C Hamano 提交于
      * maint:
        Update draft release notes to 1.7.8.4
        Update draft release notes to 1.7.7.6
        Update draft release notes to 1.7.6.6
        thin-pack: try harder to use preferred base objects as base
      c4a01a3c
    • J
      Update draft release notes to 1.7.8.4 · ab8a7808
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      ab8a7808
    • J
      Merge branch 'maint-1.7.7' into maint · 5a6a9394
      Junio C Hamano 提交于
      * maint-1.7.7:
        Update draft release notes to 1.7.7.6
        Update draft release notes to 1.7.6.6
        thin-pack: try harder to use preferred base objects as base
      5a6a9394
    • J
      Update draft release notes to 1.7.7.6 · 8f83acf7
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      8f83acf7
    • J
      Merge branch 'maint-1.7.6' into maint-1.7.7 · 901c907d
      Junio C Hamano 提交于
      * maint-1.7.6:
        Update draft release notes to 1.7.6.6
        thin-pack: try harder to use preferred base objects as base
      901c907d
    • J
      Update draft release notes to 1.7.6.6 · 04f6785a
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      04f6785a
    • J
      thin-pack: try harder to use preferred base objects as base · 15f07e06
      Jeff King 提交于
      When creating a pack using objects that reside in existing packs, we try
      to avoid recomputing futile delta between an object (trg) and a candidate
      for its base object (src) if they are stored in the same packfile, and trg
      is not recorded as a delta already. This heuristics makes sense because it
      is likely that we tried to express trg as a delta based on src but it did
      not produce a good delta when we created the existing pack.
      
      As the pack heuristics prefer producing delta to remove data, and Linus's
      law dictates that the size of a file grows over time, we tend to record
      the newest version of the file as inflated, and older ones as delta
      against it.
      
      When creating a thin-pack to transfer recent history, it is likely that we
      will try to send an object that is recorded in full, as it is newer.  But
      the heuristics to avoid recomputing futile delta effectively forbids us
      from attempting to express such an object as a delta based on another
      object. Sending an object in full is often more expensive than sending a
      suboptimal delta based on other objects, and it is even more so if we
      could use an object we know the receiving end already has (i.e. preferred
      base object) as the delta base.
      
      Tweak the recomputation avoidance logic, so that we do not punt on
      computing delta against a preferred base object.
      
      The effect of this change can be seen on two simulated upload-pack
      workloads. The first is based on 44 reflog entries from my git.git
      origin/master reflog, and represents the packs that kernel.org sent me git
      updates for the past month or two. The second workload represents much
      larger fetches, going from git's v1.0.0 tag to v1.1.0, then v1.1.0 to
      v1.2.0, and so on.
      
      The table below shows the average generated pack size and the average CPU
      time consumed for each dataset, both before and after the patch:
      
                        dataset
                  | reflog | tags
      ---------------------------------
           before | 53358  | 2750977
      size  after | 32398  | 2668479
           change |   -39% |      -3%
      ---------------------------------
           before |  0.18  | 1.12
      CPU   after |  0.18  | 1.15
           change |    +0% |      +3%
      
      This patch makes a much bigger difference for packs with a shorter slice
      of history (since its effect is seen at the boundaries of the pack) though
      it has some benefit even for larger packs.
      Signed-off-by: NJeff King <peff@peff.net>
      Acked-by: NNicolas Pitre <nico@fluxnic.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      15f07e06
    • T
      word-diff: ignore '\ No newline at eof' marker · c7c2bc0a
      Thomas Rast 提交于
      The word-diff logic accumulates + and - lines until another line type
      appears (normally [ @\]), at which point it generates the word diff.
      This is usually correct, but it breaks when the preimage does not have
      a newline at EOF:
      
        $ printf "%s" "a a a" >a
        $ printf "%s\n" "a ab a" >b
        $ git diff --no-index --word-diff a b
        diff --git 1/a 2/b
        index 9f68e94..6a7c02f 100644
        --- 1/a
        +++ 2/b
        @@ -1 +1 @@
        [-a a a-]
         No newline at end of file
        {+a ab a+}
      
      Because of the order of the lines in a unified diff
      
        @@ -1 +1 @@
        -a a a
        \ No newline at end of file
        +a ab a
      
      the '\' line flushed the buffers, and the - and + lines were never
      matched with each other.
      
      A proper fix would defer such markers until the end of the hunk.
      However, word-diff is inherently whitespace-ignoring, so as a cheap
      fix simply ignore the marker (and hide it from the output).
      
      We use a prefix match for '\ ' to parallel the logic in
      apply.c:parse_fragment().  We currently do not localize this string
      (just accept other variants of it in git-apply), but this should be
      future-proof.
      Noticed-by: NIvan Shirokoff <shirokoff@yandex-team.ru>
      Signed-off-by: NThomas Rast <trast@student.ethz.ch>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      c7c2bc0a
  10. 12 1月, 2012 3 次提交