1. 10 8月, 2005 18 次提交
  2. 09 8月, 2005 9 次提交
  3. 08 8月, 2005 5 次提交
    • J
      Merge with gitk. · d59a6043
      Junio C Hamano 提交于
      This merges commit
          fa4da7b3
      from gitk into our head commit
          6b7242aa
      
      Sincerely,
          jit-merge command.
      d59a6043
    • P
      Better graph line details display and expand history coverage. · fa4da7b3
      Paul Mackerras 提交于
      Now the history remembers when we have clicked on a graph line
      and when we have asked for a diff between two commits, as well
      as when we have displayed a commit.
      
      The display when you click on a graph line now uses clickable
      SHA1 IDs instead of the embedded "Go" buttons.  Also made the
      IDs clickable in the header for a diff between two commits.
      fa4da7b3
    • L
      [PATCH] gitk "parent information" in commit window · 8b192809
      Linus Torvalds 提交于
      This adds a useful "Parent:" line to the git commit information window.
      
      It looks something like this (from the infamous octopus merge):
      
      	Author: Junio C Hamano <junkio@cox.net>  2005-05-05 16:16:54
      	Committer: Junio C Hamano <junkio@cox.net>  2005-05-05 16:16:54
      	Parent: fc54a9c3  (Update git-apply-patch-script ...)
      	Parent: 9e30dd7c  (Make git-prune-script executa ...)
      	Parent: c4b83e61  (Do not write out new index if ...)
      	Parent: 66026590  (diff-cache shows differences  ...)
      	Parent: b28858bf  (Update diff engine for symlin ...)
      
      	    Octopus merge of the following five patches.
      
      	      Update git-apply-patch-script for symbolic links.
      	      Make git-prune-script executable again.
      	      Do not write out new index if nothing has changed.
      	      diff-cache shows differences for unmerged paths without --cache.
      	      Update diff engine for symlinks stored in the cache.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      
      where all the parent commit ID's are clickable, because the new lines are
      added as part of the "comment" string, and thus the regular clickability
      thing will match them automatically.
      
      I think this is good. And my random-tcl-monkey-skills are clearly getting
      better (although it's perfectly possible that somebody who actually knows
      what he is doing would have done things differently).
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      8b192809
    • J
      Merge with gitk. · 6b7242aa
      Junio C Hamano 提交于
      This merges commit
          d6e8149b
      from gitk into our head commit
          200e7fbb
      
      Sincerely,
          jit-merge command.
      6b7242aa
    • J
      (revert local fix) · 200e7fbb
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      200e7fbb
  4. 07 8月, 2005 8 次提交
    • P
      Use lf translation rather than binary when reading commit data. · d6e8149b
      Paul Mackerras 提交于
      The effect of this is that it allows Tcl to do the locale-specific
      conversion of the input data to its internal unicode representation.
      That means that commit messages in Russian or other languages should
      be displayed correctly now (according to the locale that is in effect.)
      d6e8149b
    • P
      Change cursor to a hand cursor when over a SHA1 ID link. · 94a2eede
      Paul Mackerras 提交于
      This is based on suggestions by Jeff Epler and Linus Torvalds, but
      extended so that we do the switching between the watch cursor and
      the normal cursor correctly as well.
      
      Also fixed a bug pointed out by Junio Hamano - I wasn't incrementing
      the link number (duh!).
      94a2eede
    • L
      [PATCH] Extend "git reset" to take a reset point · bfe19f87
      Linus Torvalds 提交于
      This was triggered by a query by Sam Ravnborg, and extends "git reset" to
      reset the index and the .git/HEAD pointer to an arbitrarily named point.
      
      For example
      
      	git reset HEAD^
      
      will just reset the current HEAD to its own parent - leaving the working
      directory untouched, but effectively un-doing the top-most commit. You
      might want to do this if you realize after you committed that you made a
      mistake that you want to fix up: reset your HEAD back to its previous
      state, fix up the working directory and re-do the commit.
      
      If you want to totally un-do the commit (and reset your working directory
      to that point too), you'd first use "git reset HEAD^" to reset to the
      parent, and then do a "git checkout -f" to reset the working directory
      state to that point in time too.
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      bfe19f87
    • J
      Redo the templates generation and installation. · d3af621b
      Junio C Hamano 提交于
      Per discussion with people interested in binary packaging,
      change the default template location from /etc/git-core to
      /usr/share/git-core hierarchy.  If a user wants to run git
      before installing for whatever reason, in addition to adding
      $src to the PATH environment variable, git-init-db can be run
      with --template=$src/templates/blt/ parameter.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      d3af621b
    • J
      f5b74956
    • J
      send-pack: allow generic sha1 expression on the source side. · 15e02b37
      Junio C Hamano 提交于
      This extends the source side semantics to match what Linus
      suggested.
      
      An example:
      
          $ git-send-pack kernel.org:/pub/scm/git/git.git pu^^:master pu
      
          would allow me to push the current pu into pu, and the
          commit two commits before it into master, on my public
          repository.
      
      The revised rule for updating remote heads is as follows.
      
       $ git-send-pack [--all] <remote> [<ref>...]
      
       - When no <ref> is specified:
      
         - with '--all', it is the same as specifying the full refs/*
           path for all local refs;
      
         - without '--all', it is the same as specifying the full
           refs/* path for refs that exist on both ends;
      
       - When one or more <ref>s are specified:
      
         - a single token <ref> (i.e. no colon) must be a pattern that
           tail-matches refs/* path for an existing local ref.  It is
           an error for the pattern to match no local ref, or more
           than one local refs.  The matching ref is pushed to the
           remote end under the same name.
      
         - <src>:<dst> can have different cases.  <src> is first tried
           as the tail-matching pattern for refs/* path.
      
           - If more than one matches are found, it is an error.
      
           - If one match is found, <dst> must either match no remote
             ref and start with "refs/", or match exactly one remote
             ref.  That remote ref is updated with the sha1 value
             obtained from the <src> sha1.
      
           - If no match is found, it is given to get_extended_sha1();
             it is an error if get_extended_sha1() does not find an
             object name.  If it succeeds, <dst> must either match
             no remote ref and start with "refs/" or match exactly
             one remote ref.  That remote ref is updated with the sha1
             value.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      15e02b37
    • J
      send-pack: allow the same source to be pushed more than once. · db27ee63
      Junio C Hamano 提交于
      The revised code accidentally inherited the restriction that a
      reference can be pushed only once, only because the original did
      not allow renaming.  This is no longer necessary so lift it.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      db27ee63
    • L
      [PATCH] Make git-sh-setup-script do what it was supposed to do · e4ad5f09
      Linus Torvalds 提交于
      Duh. A missing && meant that half the tests that git-sh-setup-script were
      _meant_ to do were actually totally ignored.
      
      In particular, the git sanity checking ended up only testing that the
      GIT_OBJECT_DIRECTORY was sane, not that GIT_DIR itself was..
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      e4ad5f09