author | Junio C Hamano <gitster@pobox.com> | |
Wed, 14 Dec 2011 05:58:51 +0000 (21:58 -0800) | ||
committer | Junio 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
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 | patch | | diff1 | | diff2 | | blob | history |
builtin/apply.c | patch | | diff1 | | diff2 | | blob | history |
builtin/blame.c | patch | | diff1 | | diff2 | | blob | history |
builtin/checkout.c | patch | | diff1 | | diff2 | | blob | history |
builtin/fetch.c | patch | | diff1 | | diff2 | | blob | history |
builtin/merge.c | patch | | diff1 | | diff2 | | blob | history |
submodule.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc Documentation/git.txt
index e869032fc0703aed18d3cb1417eda4341c29e093,5c313e52144fded5fa83a7b11252e0024b4f2628..da7d48787e7a00e7e14f9d9a0bf236ffe088bd8b
+++ b/Documentation/git.txt
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
diff --cc builtin/checkout.c
Simple merge
diff --cc builtin/fetch.c
index 91731b909aeb22bf8d4e366b8b92281ac0f9ac0c,59dfba5180d2373f0e52563f4db928a25708822d..8761a33b491ae8a9437d78247ef0808c0686486e
--- 1/builtin/fetch.c
--- 2/builtin/fetch.c
+++ b/builtin/fetch.c
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(¬e);
+ free(url);
+ fclose(fp);
return rc;
}
diff --cc builtin/merge.c
Simple merge
diff --cc submodule.c
Simple merge