1. 24 7月, 2008 20 次提交
  2. 23 7月, 2008 1 次提交
  3. 22 7月, 2008 14 次提交
  4. 21 7月, 2008 5 次提交
    • J
      Merge branch 'ap/trackinfo' · 93310a40
      Junio C Hamano 提交于
      * ap/trackinfo:
        Reword "your branch has diverged..." lines to reduce line length
      93310a40
    • J
      Merge branch 'jc/rerere-auto-more' · d1f2e169
      Junio C Hamano 提交于
      * jc/rerere-auto-more:
        rerere.autoupdate: change the message when autoupdate is in effect
      d1f2e169
    • J
      Merge branch 'ns/am-abort' · 245648de
      Junio C Hamano 提交于
      * ns/am-abort:
        git am --abort
      245648de
    • J
      Merge branch 'jc/add-addremove' · 378335b3
      Junio C Hamano 提交于
      * jc/add-addremove:
        git-add --all: documentation
        git-add --all: tests
        git-add --all: add all files
        builtin-add.c: restructure the code for maintainability
      
      Conflicts:
      	builtin-add.c
      378335b3
    • J
      "needs update" considered harmful · d14e7407
      Junio C Hamano 提交于
      "git update-index --refresh", "git reset" and "git add --refresh" have
      reported paths that have local modifications as "needs update" since the
      beginning of git.
      
      Although this is logically correct in that you need to update the index at
      that path before you can commit that change, it is now becoming more and
      more clear, especially with the continuous push for user friendliness
      since 1.5.0 series, that the message is suboptimal.  After all, the change
      may be something the user might want to get rid of, and "updating" would
      be absolutely a wrong thing to do if that is the case.
      
      I prepared two alternatives to solve this.  Both aim to reword the message
      to more neutral "locally modified".
      
      This patch is a more intrusive variant that changes the message for only
      Porcelain commands ("add" and "reset") while keeping the plumbing
      "update-index" intact.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d14e7407