1. 15 12月, 2007 24 次提交
  2. 14 12月, 2007 11 次提交
  3. 13 12月, 2007 5 次提交
    • J
      git-commit: squelch needless message during an empty merge · 37d07f8f
      Junio C Hamano 提交于
      When recording a merge that conflicted and ends up in no changes after
      manual resolution, commit callchain looked like this:
      
      	cmd_commit() ->
                  prepare_log_message() ->
                      run_status() ->
      		    wt_status_print()
      
      This invocation of run_status() is asked to find out if there is a
      committable change, but it unconditionally gave instructions such as
      "use git-add" at the same time.  When in merge, we do allow an empty
      change to be recorded, so after showing this message the code still went
      ahead and made a commit.
      
      This introduces "nowarn" parameter to run_status() to avoid these
      useless messages.  If we are not allowed to create an empty commit, we
      already call run_status() again in the original codepath, and the
      message will be shown from that call anyway.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      37d07f8f
    • J
      GIT 1.5.4-rc0 · 1e8df762
      Junio C Hamano 提交于
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      1e8df762
    • J
      Merge branch 'cc/help' · 467f42cf
      Junio C Hamano 提交于
      * cc/help:
        RPM spec: Adjust htmldir
        git-help -w: do not require to be in git repository
        git.spec.in: remove python_path
        Documentation: rename git.texi to user-manual.texi
        Add git-browse-help to .gitignore
        git-help -i: show info documentation from matching version of git
        git-help -i: invoke info with document and node name
        Documentation: add gitman.info target
        Documentation: describe -w/--web option to "git-help".
        Use {web,instaweb,help}.browser config options.
        git-help: add -w|--web option to display html man page in a browser.
        Documentation: describe -i/--info option to "git-help"
        git-help: add -i|--info option to display info page.
      467f42cf
    • J
      RPM spec: Adjust htmldir · 39bf13f2
      Junio C Hamano 提交于
      git help -w needs to know the right location of installed pages.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      39bf13f2
    • J
      git-help -w: do not require to be in git repository · 22c90717
      Junio C Hamano 提交于
      The users used to be able to say "git help cat-file" from anywhere, but
      the browse-help script insisted to be in a git repository, which caused
      "git help -w cat-file" to barf outside.  Correct it.
      
      While at it, remove leftover debugging "echo".
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      22c90717