1. 03 6月, 2005 2 次提交
  2. 01 6月, 2005 1 次提交
    • L
      git-rev-list: add "--pretty" command line option · 9d97aa64
      Linus Torvalds 提交于
      That pretty-prints the resulting commit messages, so
      
      	git-rev-list --pretty HEAD v2.6.12-rc5 | less -S
      
      basically ends up being a log of the changes between -rc5
      and current head.
      
      It uses the pretty-printing helper function I just extracted
      from diff-tree.c.
      9d97aa64
  3. 31 5月, 2005 2 次提交
  4. 26 5月, 2005 1 次提交
    • L
      git-rev-list: add "end" commit and "--header" flag · a6f68d47
      Linus Torvalds 提交于
      The "end" commit is just faking it right now, it's sorting things
      purely by date, so this is _not_ a reachability analysis. Some day.
      
      The "--header" flag causes the commit message to be printed out,
      with a NUL character separator after it for parseability. This
      allows you to do things like use "grep -z" to grep for certain
      authors etc.
      a6f68d47
  5. 20 5月, 2005 1 次提交
  6. 07 5月, 2005 1 次提交
  7. 02 5月, 2005 1 次提交
    • L
      Add "get_sha1()" helper function. · 3c249c95
      Linus Torvalds 提交于
      This allows the programs to use various simplified versions of
      the SHA1 names, eg just say "HEAD" for the SHA1 pointed to by
      the .git/HEAD file etc.
      
      For example, this commit has been done with
      
      	git-commit-tree $(git-write-tree) -p HEAD
      
      instead of the traditional "$(cat .git/HEAD)" syntax.
      3c249c95
  8. 24 4月, 2005 2 次提交