1. 06 1月, 2006 1 次提交
  2. 28 12月, 2005 1 次提交
  3. 20 12月, 2005 1 次提交
    • J
      Remove "octopus". · e32faa8a
      Junio C Hamano 提交于
      We still advertise "git resolve" as a standalone command, but never
      "git octopus", so nobody should be using it and it is safe to
      retire it.  The functionality is still available as a strategy
      backend.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      e32faa8a
  4. 25 11月, 2005 1 次提交
  5. 20 11月, 2005 1 次提交
  6. 14 11月, 2005 1 次提交
  7. 13 11月, 2005 1 次提交
  8. 12 11月, 2005 3 次提交
  9. 08 11月, 2005 1 次提交
  10. 04 11月, 2005 1 次提交
    • J
      Add 'ours' merge strategy. · 64da9e60
      Junio C Hamano 提交于
      This adds the coolest merge strategy ever, "ours".  It can take
      arbitrary number of foreign heads and merge them into the
      current branch, with the resulting tree always taken from our
      branch head, hence its name.
      
      What this means is that you can declare that the current branch
      supersedes the development histories of other branches using
      this merge strategy.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      64da9e60
  11. 28 10月, 2005 1 次提交
  12. 21 10月, 2005 1 次提交
  13. 19 10月, 2005 1 次提交
  14. 17 10月, 2005 1 次提交
  15. 15 10月, 2005 1 次提交
  16. 02 10月, 2005 1 次提交
    • J
      Add git-symbolic-ref · 8098a178
      Junio C Hamano 提交于
      This adds the counterpart of git-update-ref that lets you read
      and create "symbolic refs".  By default it uses a symbolic link
      to represent ".git/HEAD -> refs/heads/master", but it can be compiled
      to use the textfile symbolic ref.
      
      The places that did 'readlink .git/HEAD' and 'ln -s refs/heads/blah
      .git/HEAD' have been converted to use new git-symbolic-ref command, so
      that they can deal with either implementation.
      Signed-off-by: NJunio C Hamano <junio@twinsun.com>
      8098a178
  17. 29 9月, 2005 2 次提交
  18. 25 9月, 2005 2 次提交
  19. 24 9月, 2005 1 次提交
  20. 22 9月, 2005 3 次提交
    • J
      Retire diff-helper. · 5cfcd07c
      Junio C Hamano 提交于
      The textual diff generation with built-in '-p' in diff-* brothers has
      proven to be useful enough that git-diff-helper outlived its usefulness.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      5cfcd07c
    • J
      Retire rev-tree. · 9dcc829f
      Junio C Hamano 提交于
      Some old scripts might still use git-rev-tree, but it really is
      clearly inferior in every way to git-rev-list that such scripts should
      be fixed anyway. Fixing them should be pretty easy.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      9dcc829f
    • J
      Retire git-export. · 0fe51391
      Junio C Hamano 提交于
      git-export was done as a concept example on how easy it is to export
      the git data to something else. It's much less powerful than any
      number of trivial one-liner scripts now, and real exporters would not
      ever use git-export.
      
      It's obviously much less powerful than "git-whatchanged", or just
      about any combination of git-rev-list + git-diff-tree.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      0fe51391
  21. 18 9月, 2005 1 次提交
  22. 16 9月, 2005 2 次提交
  23. 13 9月, 2005 2 次提交
  24. 11 9月, 2005 1 次提交
    • J
      Add a new merge strategy by Fredrik Kuivinen. · 720d150c
      Junio C Hamano 提交于
      I really wanted to try this out, instead of asking for an adjustment
      to the 'git merge' driver and waiting.  For now the new strategy is
      called 'fredrik' and not in the list of default strategies to be tried.
      
      The script wants Python 2.4 so this commit also adjusts Debian and RPM
      build procecure files.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      720d150c
  25. 10 9月, 2005 1 次提交
  26. 08 9月, 2005 1 次提交
    • J
      Big tool rename. · 215a7ad1
      Junio C Hamano 提交于
      As promised, this is the "big tool rename" patch.  The primary differences
      since 0.99.6 are:
      
        (1) git-*-script are no more.  The commands installed do not
            have any such suffix so users do not have to remember if
            something is implemented as a shell script or not.
      
        (2) Many command names with 'cache' in them are renamed with
            'index' if that is what they mean.
      
      There are backward compatibility symblic links so that you and
      Porcelains can keep using the old names, but the backward
      compatibility support  is expected to be removed in the near
      future.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      215a7ad1
  27. 27 8月, 2005 1 次提交