Code

Merge branch 'maint-1.7.7' into maint
authorJunio C Hamano <gitster@pobox.com>
Wed, 14 Dec 2011 05:58:51 +0000 (21:58 -0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 14 Dec 2011 05:58:51 +0000 (21:58 -0800)
* maint-1.7.7:
  Git 1.7.7.5
  Git 1.7.6.5
  blame: don't overflow time buffer
  fetch: create status table using strbuf
  checkout,merge: loosen overwriting untracked file check based on info/exclude
  cast variable in call to free() in builtin/diff.c and submodule.c
  apply: get rid of useless x < 0 comparison on a size_t type

Conflicts:
Documentation/git.txt
GIT-VERSION-GEN
RelNotes
builtin/fetch.c

1  2 
Documentation/git.txt
builtin/apply.c
builtin/blame.c
builtin/checkout.c
builtin/fetch.c
builtin/merge.c
submodule.c

index e869032fc0703aed18d3cb1417eda4341c29e093,5c313e52144fded5fa83a7b11252e0024b4f2628..da7d48787e7a00e7e14f9d9a0bf236ffe088bd8b
@@@ -44,14 -44,13 +44,18 @@@ unreleased) version of git, that is ava
  branch of the `git.git` repository.
  Documentation for older releases are available here:
  
- * link:v1.7.7.1/git.html[documentation for release 1.7.7.1]
 +* link:v1.7.8/git.html[documentation for release 1.7.8]
 +
 +* release notes for
 +  link:RelNotes/1.7.8.txt[1.7.8].
 +
+ * link:v1.7.7.5/git.html[documentation for release 1.7.7.5]
  
  * release notes for
+   link:RelNotes/1.7.7.5.txt[1.7.7.5],
+   link:RelNotes/1.7.7.4.txt[1.7.7.4],
+   link:RelNotes/1.7.7.3.txt[1.7.7.3],
+   link:RelNotes/1.7.7.2.txt[1.7.7.2],
    link:RelNotes/1.7.7.1.txt[1.7.7.1],
    link:RelNotes/1.7.7.txt[1.7.7].
  
diff --cc builtin/apply.c
Simple merge
diff --cc builtin/blame.c
Simple merge
Simple merge
diff --cc builtin/fetch.c
index 91731b909aeb22bf8d4e366b8b92281ac0f9ac0c,59dfba5180d2373f0e52563f4db928a25708822d..8761a33b491ae8a9437d78247ef0808c0686486e
@@@ -461,18 -451,16 +471,19 @@@ static int store_updated_refs(const cha
                                shown_url = 1;
                        }
                        if (verbosity >= 0)
-                               fprintf(stderr, " %s\n", note);
+                               fprintf(stderr, " %s\n", note.buf);
                }
        }
 -      free(url);
 -      fclose(fp);
 +
        if (rc & STORE_REF_ERROR_DF_CONFLICT)
                error(_("some local refs could not be updated; try running\n"
                      " 'git remote prune %s' to remove any old, conflicting "
                      "branches"), remote_name);
 +
 + abort:
+       strbuf_release(&note);
 +      free(url);
 +      fclose(fp);
        return rc;
  }
  
diff --cc builtin/merge.c
Simple merge
diff --cc submodule.c
Simple merge