1. 05 8月, 2005 8 次提交
    • J
      git-applymbox: allow retrying after fixing up. · b50abe88
      Junio C Hamano 提交于
      After failing to apply a patch, when operating under -q (query)
      flag, give the user an opportunity to fix up the patch in a
      separate window and retry.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      b50abe88
    • J
      Merge with gitk. · 638ccfdf
      Junio C Hamano 提交于
      638ccfdf
    • J
      daemon.c: squelch error message from EINTR · 1eef0b33
      Junio C Hamano 提交于
      Every time after servicing the connection, select() first fails
      with EINTR and ends up waiting for one second before serving the
      next client.  The sleep() was placed by the original author per
      suggestion from the list to avoid spinning on failing select,
      but at least this EINTR situation should not result in "at most
      one client per second" service limit.
      
      I am not sure if this is the right fix, but WTH.  The king
      penguin says that serious people would run the daemon under
      inetd anyway, and I agree with that.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      1eef0b33
    • J
      Teach rev-list since..til notation. · 1215879c
      Junio C Hamano 提交于
      The King Penguin says:
      
          Now, for extra bonus points, maybe you should make "git-rev-list" also
          understand the "rev..rev" format (which you can't do with just the
          get_sha1() interface, since it expands into more).
      
      The faithful servant makes it so.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      1215879c
    • J
      Update get_sha1() to grok extended format. · 9938af6a
      Junio C Hamano 提交于
      Everybody envies rev-parse, who is the only one that can grok
      the extended sha1 format.  Move the get_extended_sha1() out of
      rev-parse, rename it to get_sha1() and make it available to
      everybody else.
      
      The one I posted earlier to the list had one bug where it did
      not handle a name that ends with a digit correctly (it
      incorrectly tried the "Nth parent" path).  This commit fixes it.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      9938af6a
    • J
      Fix send-pack for non-commitish tags. · 37fde874
      Junio C Hamano 提交于
      Again I left the v2.6.11-tree tag behind.  My bad.
      
      This commit makes sure that we do not barf when pushing a ref
      that is a non-commitish tag.  You can update a remote ref under
      the following conditions:
      
       * You can always use --force.
       * Creating a brand new ref is OK.
       * If the remote ref is exactly the same as what you are
         pushing, it is OK (nothing is pushed).
       * You can replace a commitish with another commitish which is a
         descendant of it, if you can verify the ancestry between them;
         this and the above means you have to have what you are replacing.
       * Otherwise you cannot update; you need to use --force.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      37fde874
    • J
      git-init-db: brown paper bag bugfix. · b03e2d20
      Junio C Hamano 提交于
      OK, I admit I am an idiot.  I ended up creating bunch of garbage
      directories like .git/HEADbranch/ .git/HEADrefs/...
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      b03e2d20
    • P
      Compress the graph horizontally if it gets too wide. · 8d858d1a
      Paul Mackerras 提交于
      If the graph gets to use more than a certain percentage (default 50%)
      of the width of the top-left pane, we now reduce the amount of space
      allowed for each graph line.  This means it doesn't look quite as
      nice but you can still see the headline for the commit.  (Currently
      the only way to customize the percentage is to edit your ~/.gitk
      file manually.)
      8d858d1a
  2. 04 8月, 2005 10 次提交
    • J
      git-bisect termination condition fix. · 7f47e72f
      Junio C Hamano 提交于
      When I munged the original from Linus, which did not terminate
      when the last bisect to check happened to be a bad one, to
      terminate, I seem to have botched the end result to pick.
      
      Thanks for Sanjoy Mahajan for a good reproduction recipe to
      diagnose this.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      7f47e72f
    • J
      Retire git-check-files documentation too. · 0dd385c4
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      0dd385c4
    • A
      [PATCH] Fix sparse warnings · 635d37af
      Alecs King 提交于
      fix one 'should it be static?' warning and
      two 'mixing declarations and code' warnings.
      Signed-off-by: NAlecs King <alecsk@gmail.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      635d37af
    • J
      Retire check-files. · 20f66331
      Junio C Hamano 提交于
      The king penguin said:
      
          It has no point any more, all the tools check the file
          status on their own, and yes, the thing should probably be
          removed.
      
      and the faithful servant makes it so.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      20f66331
    • K
      [PATCH] Fix debian doc-base · a765c99a
      Kalle Valo 提交于
      Fixed location of HTML documents in debian doc-base file.
      
      Without this fix debian package won't install properly (complains
      about missing /usr/share/doc/git-core/html directory).
      
      jc: thanks, Kalle.  I think debian/rules is still broken around
      etcdir area, though.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      a765c99a
    • J
      git-send-pack: documentation · 9553d20b
      Junio C Hamano 提交于
      Describe the renaming push.  The wording is horrible and I would
      appreciate a rewrite, but it is better than nothing ;-).
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      9553d20b
    • J
      Renaming push. · f88395ac
      Junio C Hamano 提交于
      This allows git-send-pack to push local refs to a destination
      repository under different names.
      
      Here is the name mapping rules for refs.
      
      * If there is no ref mapping on the command line:
      
       - if '--all' is specified, it is equivalent to specifying
         <local> ":" <local> for all the existing local refs on the
         command line
       - otherwise, it is equivalent to specifying <ref> ":" <ref> for
         all the refs that exist on both sides.
      
      * <name> is just a shorthand for <name> ":" <name>
      
      * <src> ":" <dst>
      
        push ref that matches <src> to ref that matches <dst>.
      
        - It is an error if <src> does not match exactly one of local
          refs.
      
        - It is an error if <dst> matches more than one remote refs.
      
        - If <dst> does not match any remote refs, either
      
          - it has to start with "refs/"; <dst> is used as the
            destination literally in this case.
      
          - <src> == <dst> and the ref that matched the <src> must not
            exist in the set of remote refs; the ref matched <src>
            locally is used as the name of the destination.
      
      For example,
      
        - "git-send-pack --all <remote>" works exactly as before;
      
        - "git-send-pack <remote> master:upstream" pushes local master
          to remote ref that matches "upstream".  If there is no such
          ref, it is an error.
      
        - "git-send-pack <remote> master:refs/heads/upstream" pushes
          local master to remote refs/heads/upstream, even when
          refs/heads/upstream does not exist.
      
        - "git-send-pack <remote> master" into an empty remote
          repository pushes the local ref/heads/master to the remote
          ref/heads/master.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      f88395ac
    • J
      Install sample hooks · 8d5afef0
      Junio C Hamano 提交于
      A template mechanism to populate newly initialized repository
      with default set of files is introduced.  Use it to ship example
      hooks that can be used for update and post update checks, as
      Josef Weidendorfer suggests.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      8d5afef0
    • S
      [PATCH] Plug memory leaks in git-unpack-objects · ee639140
      Sergey Vlasov 提交于
      - Call inflateEnd to release zlib state after use.
      - After resolving delta, free base object data.
      Signed-off-by: NSergey Vlasov <vsu@altlinux.ru>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      ee639140
    • J
      send-pack: handle partial pushes correctly. · 40b64d47
      Junio C Hamano 提交于
      When pushing into multi-user repository, or when pushing to a
      repository from a local repository that has rebased branches
      that has been pruned, the destination repository can have head
      commits that are missing from the local repository.
      
      This should not matter as long as the local head of the branch
      being pushed is a proper superset of the destination branch, but
      we ended up trying to run rev-list telling it to exclude objects
      reachable from those heads missing from the local repository,
      causing it to barf.  Prune those heads from the rev-list
      parameter list, and make sure we do not try to push a branch
      whose remote head is something we lack.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      40b64d47
  3. 03 8月, 2005 20 次提交
  4. 02 8月, 2005 2 次提交