1. 09 12月, 2006 5 次提交
  2. 08 12月, 2006 2 次提交
  3. 07 12月, 2006 13 次提交
    • J
      Merge branch 'maint' · efe2c9e0
      Junio C Hamano 提交于
      * maint:
        cvsserver: Avoid miscounting bytes in Perl v5.8.x
      efe2c9e0
    • M
      cvsserver: Avoid miscounting bytes in Perl v5.8.x · 4f88d3e0
      Martin Langhoff 提交于
      At some point between v5.6 and 5.8 Perl started to assume its input,
      output and filehandles are UTF-8. This breaks the counting of bytes
      for the CVS protocol, resulting in the client expecting less data
      than we actually send, and storing truncated files.
      Signed-off-by: NMartin Langhoff <martin@catalyst.net.nz>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      4f88d3e0
    • N
      change the unpack limit treshold to a saner value · 46732fae
      Nicolas Pitre 提交于
      Currently the treshold is 5000.  The likelihood of this value to ever be
      crossed for a single push is really small making it not really useful.
      
      The optimal treshold for a pure space saving on a filesystem with 4kb
      blocks is 3.  However this is likely to create many small packs
      concentrating a large number of files in a single directory compared to
      the same objects which are spread over 256 directories when loose.  This
      means we would need 512 objects per pack on average to approximagte the
      same directory cost (a pack has 2 files because of the index).
      
      But 512 is a really high value just like 5000 since most pushes are
      unlikely to have that many objects.  So let's try with a value of 100
      which should have a good balance between small pushes going to be
      exploded into loose objects and large pushes kept as whole packs.
      
      This is not a replacement for periodic repacks of course.
      Signed-off-by: NNicolas Pitre <nico@cam.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      46732fae
    • J
      Documentation: reorganize cvs-migration.txt · cd976f5c
      J. Bruce Fields 提交于
      Modify cvs-migration.txt so it explains first how to develop against a
      shared repository, then how to set up a shared repository, then how to
      import a repository from cvs.  Though this seems chronologically
      backwards, it's still readable in this order, and it puts the more
      commonly needed material closer to the front.
      
      Remove the annotate/pickaxe section; perhaps it can find a place elsewhere
      in the future.  Remove most of the "why git is better than cvs" stuff from
      the introduction.
      
      Add some minor clarifications, including two that have come up several
      times on the mailing list:
      
      	1. Recommend committing any changes before running pull.
      	2. Note that changes must be commited before they can be pushed.
      
      Update the clone discussion to reflect the new --use-separate-remotes
      default, and add a brief mention of git-cvsserver.
      Signed-off-by: NJ. Bruce Fields <bfields@citi.umich.edu>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      cd976f5c
    • J
      git-merge: fix "fix confusion between tag and branch" for real · de51faf3
      Junio C Hamano 提交于
      An earlier commit 3683dc5a broke the merge message generation with
      a careless use of && where it was not needed, breaking the merge
      message for cases where non branches are given.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      de51faf3
    • E
      git-svn: avoid network timeouts for long-running fetches · ebdf7b95
      Eric Wong 提交于
      Long-running fetches run inside children to avoid memory leaks.
      When we refork, the connection in the parent can be idle for a
      long time; attempting to reuse it in the next child can result
      in timeouts.
      Signed-off-by: NEric Wong <normalperson@yhbt.net>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      ebdf7b95
    • J
      gitweb: Allow PNG, GIF, JPEG images to be displayed in "blob" view · 5a4cf334
      Jakub Narebski 提交于
      Allow images in one of web formats (PNG, GIF, JPEG) - actually files
      with mimetype of image/png, image/git, image/jpeg - to be displayed in
      "blob" view using <img /> element, instead of using "blob_plain" view
      for them, like for all other files except also text/* mimetype files.
      
      This makes possible to easily go to file history, to HEAD version of
      the file, to appropriate commit etc; all of those are not available
      in "blob_plain" (raw) view.
      
      Only text files can have "blame" view link in the formats part of
      navbar.
      Signed-off-by: NJakub Narebski <jnareb@gmail.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      5a4cf334
    • J
      git-merge: squelch needless error message. · 211e6eb5
      Junio C Hamano 提交于
      While deciding if the new style command line argument is a tag
      or a branch, we checked it with "git show-ref -s --verify" to
      see if results in an error, but when it is not a branch, the
      check leaked the error message out, which was not needed to be
      shown to the end user.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      211e6eb5
    • J
      Merge · c0b7391b
      Junio C Hamano 提交于
      c0b7391b
    • J
      Merge branch 'maint' · 2d13b732
      Junio C Hamano 提交于
      * maint:
        git-reset to remove "$GIT_DIR/MERGE_MSG"
        unpack-trees: make sure "df_conflict_entry.name" is NUL terminated.
      2d13b732
    • J
      git-reset to remove "$GIT_DIR/MERGE_MSG" · 49ed2bc4
      Junio C Hamano 提交于
      An earlier commit a9cb3c6e changed git-commit to use the
      contents of MERGE_MSG even when we do not have MERGE_HEAD (the
      rationale is in its log message).
      
      However, the change tricks the following sequence to include a
      merge message in a completely unrelated commit:
      
      	$ git pull somewhere
      	: oops, the conflicts are too much.  forget it.
              $ git reset --hard
              : work work work
              $ git commit
      
      To fix this confusion, this patch makes "git reset" to remove
      the leftover MERGE_MSG that was prepared when the user abandoned
      the merge.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      Acked-by: Luben Tuikov <ltuikov@yahoo.com
      49ed2bc4
    • J
      cvs-migration: improved section titles, better push/commit explanation · 4003a58e
      J. Bruce Fields 提交于
      Rename the section titles to make the "how-to" content of the section
      obvious.  Also clarify that changes have to be commited before they can
      be pushed.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      4003a58e
    • J
      cvs-migration document: make the need for "push" more obvious · 3a9f1a55
      Johannes Schindelin 提交于
      It really is an important concept to grasp for people coming
      from CVS. Even if it is briefly mentioned, it is not obvious
      enough to sink in.
      
      [jc: with wording updates from J. Bruce Fields]
      Signed-off-by: NJohannes Schindelin <Johannes.Schindelin@gmx.de>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      3a9f1a55
  4. 05 12月, 2006 11 次提交
  5. 04 12月, 2006 1 次提交
  6. 03 12月, 2006 3 次提交
    • J
      Merge branch 'maint' · 278fcd7d
      Junio C Hamano 提交于
      * maint:
        git-svn: avoid fetching files twice in the same revision
      278fcd7d
    • E
      git-svn: avoid fetching files twice in the same revision · 6173c197
      Eric Wong 提交于
      SVN is not entirely consistent in returning log information and
      sometimes returns file information when adding subdirectories,
      and sometimes it does not (only returning information about the
      directory that was added).  This caused git-svn to occasionally
      add a file to the list of files to be fetched twice.  Now we
      change the data structure to be hash to avoid repeated fetches.
      
      As of now (in master), this only affects repositories fetched
      without deltas enabled (file://, and when manually overriden
      with GIT_SVN_DELTA_FETCH=0); so this bug mainly affects users of
      1.4.4.1 and maint.
      
      Thanks to Florian Weimer for reporting this bug.
      
      [jc: backported for maint]
      Signed-off-by: NEric Wong <normalperson@yhbt.net>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      6173c197
    • J
      git-merge: fix confusion between tag and branch · 3683dc5a
      Junio C Hamano 提交于
      In a repository with core.warnambiguousrefs turned off, and with
      a branch and a tag that have the same name 'frotz',
      
      	git merge frotz
      
      would merge the commit pointed at by the tag 'frotz' but
      incorrectly would identify what was merged as 'branch frotz' in
      the merge message.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      3683dc5a
  7. 02 12月, 2006 3 次提交
  8. 30 11月, 2006 2 次提交